Skip to content

Commit 521f94e

Browse files
committed
Improve compatibility
1 parent 9ea9766 commit 521f94e

21 files changed

+1192
-838
lines changed

.idea/misc.xml

+5-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

+8-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 27
5-
buildToolsVersion '27.0.2'
5+
buildToolsVersion '27.0.3'
66
useLibrary 'org.apache.http.legacy'
77
signingConfigs {
88
release {
@@ -25,7 +25,7 @@ android {
2525
applicationId "bin.xposed.Unblock163MusicClient"
2626
minSdkVersion 9
2727
targetSdkVersion 27
28-
versionCode 24
28+
versionCode 25
2929
versionName = "0.0.${versionCode}"
3030
archivesBaseName = "${applicationId}-${versionName}"
3131
}
@@ -41,10 +41,15 @@ android {
4141
lintOptions {
4242
abortOnError false
4343
}
44+
compileOptions {
45+
sourceCompatibility JavaVersion.VERSION_1_8
46+
targetCompatibility JavaVersion.VERSION_1_8
47+
}
4448
}
4549

4650
dependencies {
4751
provided 'de.robv.android.xposed:api:53'
4852
provided 'de.robv.android.xposed:api:53:sources'
49-
compile 'dnsjava:dnsjava:2.1.8'
53+
implementation 'dnsjava:dnsjava:2.1.8'
54+
implementation 'com.annimon:stream:1.1.9'
5055
}

app/src/main/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535
tools:ignore="ManifestResource" />
3636
<meta-data
3737
android:name="xposedminversion"
38-
android:value="54" />
38+
android:value="53" />
3939
</application>
4040
</manifest>

0 commit comments

Comments
 (0)