Skip to content

Commit

Permalink
Last one
Browse files Browse the repository at this point in the history
  • Loading branch information
Ron-Wang committed Oct 12, 2018
1 parent eae441d commit b6e33ae
Show file tree
Hide file tree
Showing 76 changed files with 5,374 additions and 192 deletions.
Binary file added RCHelper/.idea/caches/build_file_checksums.ser
Binary file not shown.
29 changes: 29 additions & 0 deletions RCHelper/.idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 0 additions & 22 deletions RCHelper/.idea/compiler.xml

This file was deleted.

3 changes: 0 additions & 3 deletions RCHelper/.idea/copyright/profiles_settings.xml

This file was deleted.

38 changes: 5 additions & 33 deletions RCHelper/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 12 additions & 6 deletions RCHelper/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.example.ron_wang.rchelper"
minSdkVersion 17
Expand All @@ -17,14 +17,20 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
repositories {
flatDir {
dirs 'libs' // aar目录
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation(name: 'anzhisdkad_lib_3.1.1-release', ext: 'aar')
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
implementation 'com.android.support:appcompat-v7:25.3.1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
}
Binary file not shown.
Binary file added RCHelper/app/release/app-release.apk
Binary file not shown.
1 change: 1 addition & 0 deletions RCHelper/app/release/output.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]
50 changes: 47 additions & 3 deletions RCHelper/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,68 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.ron_wang.rchelper">

<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="26" />

<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
<uses-permission android:name="android.permission.GET_TASKS" />
<uses-permission android:name="android.permission.READ_SETTINGS" />
<uses-permission android:name="android.permission.WRITE_SETTINGS" />

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<activity android:name=".SplashActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".MainActivity" />
<activity
android:name=".SingleActivity"
android:windowSoftInputMode="stateHidden|stateAlwaysHidden"></activity>
<activity android:name=".DoubleActivity"></activity>
android:windowSoftInputMode="stateHidden|stateAlwaysHidden" />
<activity
android:name=".DoubleActivity"
android:windowSoftInputMode="stateHidden|stateAlwaysHidden" />
<activity
android:name=".TActivity"
android:windowSoftInputMode="stateHidden|stateAlwaysHidden" />
<activity
android:name=".PreActivity"
android:windowSoftInputMode="stateHidden|stateAlwaysHidden" />
<activity
android:name=".JActivity"
android:windowSoftInputMode="stateHidden|stateAlwaysHidden" />
<activity
android:name=".SingleJActivity"
android:windowSoftInputMode="stateHidden|stateAlwaysHidden" />
<activity
android:name=".DoubleJActivity"
android:windowSoftInputMode="stateHidden|stateAlwaysHidden" />
<activity
android:name=".TJActivity"
android:windowSoftInputMode="stateHidden|stateAlwaysHidden" />
<activity
android:name=".FindActivity"
android:windowSoftInputMode="stateHidden|stateAlwaysHidden"/>
<activity android:name=".ListActivity" />
<activity android:name=".LinkActivity"></activity>
</application>

</manifest>
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.example.ron_wang.rchelper;

public class AdIDs {
/**
* Appkey 媒体id
*
*/
public final static String APPKEY = "aadbf9123befd7752733bf729961fc0e";

/* *//**
* 开屏广告id
*/
public final static String SPLASH_ID = "1788";//
}
Loading

0 comments on commit b6e33ae

Please sign in to comment.