-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from nov30th/mine
Label updates & Gradle updates.
- Loading branch information
Showing
23 changed files
with
103 additions
and
246 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,32 @@ | ||
apply plugin: 'com.android.application' | ||
|
||
android { | ||
compileSdkVersion 25 | ||
buildToolsVersion '27.0.3' | ||
compileSdkVersion 30 | ||
// buildToolsVersion '27.0.3' | ||
|
||
defaultConfig { | ||
applicationId "im.hoho.alipayInstallB" | ||
minSdkVersion 21 | ||
targetSdkVersion 25 | ||
versionCode 62 | ||
versionName "2.4.0-Beta" | ||
targetSdkVersion 30 | ||
versionCode 63 | ||
versionName "2.4.0-Gamma" | ||
// testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | ||
} | ||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
// buildTypes { | ||
// release { | ||
// minifyEnabled false | ||
// proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
// } | ||
// } | ||
} | ||
|
||
repositories { | ||
jcenter(); | ||
mavenCentral() | ||
maven { url "https://api.xposed.info/" } | ||
} | ||
|
||
dependencies { | ||
provided 'de.robv.android.xposed:api:82' | ||
compile fileTree(include: ['*.jar'], dir: 'libs') | ||
// androidTestCompile('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.4.0' | ||
compile 'com.alibaba:fastjson:1.1.72.android' | ||
|
||
// compile 'com.android.support.constraint:constraint-layout:1.0.2' | ||
testCompile 'junit:junit:4.12' | ||
compileOnly 'de.robv.android.xposed:api:82' | ||
implementation fileTree(include: ['*.jar'], dir: 'libs') | ||
implementation 'com.alibaba:fastjson:1.1.72.android' | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<resources> | ||
<string-array name="xposed_scopes" > | ||
<item>com.eg.android.AlipayGphone</item> | ||
</string-array> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,3 @@ | ||
<resources> | ||
<string name="app_name">支付宝 InstallB 模块 By HOHO`` 裘小杰</string> | ||
<string name="title_activity_settings">Settings</string> | ||
|
||
<!-- Strings related to Settings --> | ||
|
||
<!-- Example General settings --> | ||
<string name="pref_header_general">General</string> | ||
|
||
<string name="pref_title_social_recommendations">Enable social recommendations</string> | ||
<string name="pref_description_social_recommendations">Recommendations for people to contact | ||
based on your message history | ||
</string> | ||
|
||
<string name="pref_title_display_name">Display name</string> | ||
<string name="pref_default_display_name">John Smith</string> | ||
|
||
<string name="pref_title_add_friends_to_messages">Add friends to messages</string> | ||
<string-array name="pref_example_list_titles"> | ||
<item>Always</item> | ||
<item>When possible</item> | ||
<item>Never</item> | ||
</string-array> | ||
<string-array name="pref_example_list_values"> | ||
<item>1</item> | ||
<item>0</item> | ||
<item>-1</item> | ||
</string-array> | ||
|
||
<!-- Example settings for Data & Sync --> | ||
<string name="pref_header_data_sync">Data & sync</string> | ||
|
||
<string name="pref_title_sync_frequency">Sync frequency</string> | ||
<string-array name="pref_sync_frequency_titles"> | ||
<item>15 minutes</item> | ||
<item>30 minutes</item> | ||
<item>1 hour</item> | ||
<item>3 hours</item> | ||
<item>6 hours</item> | ||
<item>Never</item> | ||
</string-array> | ||
<string-array name="pref_sync_frequency_values"> | ||
<item>15</item> | ||
<item>30</item> | ||
<item>60</item> | ||
<item>180</item> | ||
<item>360</item> | ||
<item>-1</item> | ||
</string-array> | ||
|
||
<string name="pref_title_system_sync_settings">System sync settings</string> | ||
|
||
<!-- Example settings for Notifications --> | ||
<string name="pref_header_notifications">Notifications</string> | ||
|
||
<string name="pref_title_new_message_notifications">New message notifications</string> | ||
|
||
<string name="pref_title_ringtone">Ringtone</string> | ||
<string name="pref_ringtone_silent">Silent</string> | ||
|
||
<string name="pref_title_vibrate">Vibrate</string> | ||
<string name="enabled_my_room">Enabled My Room</string> | ||
<string name="change_my_uid">Change My UID</string> | ||
<string name="_1521763476">1521763476</string> | ||
<string name="app_name">支付宝 InstallB 模块</string> | ||
</resources> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.