@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
2
2
apply plugin : ' kotlin-android'
3
3
apply plugin : ' kotlin-android-extensions'
4
4
apply plugin : ' com.github.dcendents.android-maven'
5
- group= ' com.github.TCNCoalition'
5
+ group = ' com.github.TCNCoalition'
6
6
7
7
android {
8
8
compileSdkVersion 29
@@ -24,6 +24,14 @@ android {
24
24
}
25
25
}
26
26
27
+ compileOptions {
28
+ sourceCompatibility 1.8
29
+ targetCompatibility 1.8
30
+ }
31
+
32
+ kotlinOptions {
33
+ jvmTarget = JavaVersion . VERSION_1_8 . toString()
34
+ }
27
35
}
28
36
29
37
dependencies {
@@ -32,13 +40,13 @@ dependencies {
32
40
implementation ' androidx.appcompat:appcompat:1.1.0'
33
41
implementation ' androidx.core:core-ktx:1.2.0'
34
42
api ' cafe.cryptography:ed25519-elisabeth:0.1.0'
43
+ // DO NOT UPDATE: unless your client uses the same version of `com.google.protobuf:protobuf-javalite`
44
+ // as in the new versions of this library
45
+ // noinspection GradleDependency
46
+ implementation(' androidx.security:security-crypto:1.0.0-beta01' )
47
+
35
48
testImplementation ' junit:junit:4.13'
36
49
testImplementation ' org.nield:kotlin-statistics:1.2.1'
37
50
androidTestImplementation ' androidx.test.ext:junit:1.1.1'
38
51
androidTestImplementation ' androidx.test.espresso:espresso-core:3.2.0'
39
- api ' androidx.lifecycle:lifecycle-service:2.2.0'
40
- // DO NOT UPDATE: unless your client uses the same version of `com.google.protobuf:protobuf-javalite`
41
- // as in the new versions of this library
42
- // noinspection GradleDependency
43
- implementation (' androidx.security:security-crypto:1.0.0-beta01' )
44
52
}
0 commit comments