Skip to content

Commit c82245f

Browse files
committed
Remove LifecycleService dependency
1 parent b22d424 commit c82245f

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

tcn-client-android/build.gradle

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
22
apply plugin: 'kotlin-android'
33
apply plugin: 'kotlin-android-extensions'
44
apply plugin: 'com.github.dcendents.android-maven'
5-
group='com.github.TCNCoalition'
5+
group = 'com.github.TCNCoalition'
66

77
android {
88
compileSdkVersion 29
@@ -24,6 +24,14 @@ android {
2424
}
2525
}
2626

27+
compileOptions {
28+
sourceCompatibility 1.8
29+
targetCompatibility 1.8
30+
}
31+
32+
kotlinOptions {
33+
jvmTarget = JavaVersion.VERSION_1_8.toString()
34+
}
2735
}
2836

2937
dependencies {
@@ -32,13 +40,13 @@ dependencies {
3240
implementation 'androidx.appcompat:appcompat:1.1.0'
3341
implementation 'androidx.core:core-ktx:1.2.0'
3442
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+
3548
testImplementation 'junit:junit:4.13'
3649
testImplementation 'org.nield:kotlin-statistics:1.2.1'
3750
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
3851
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')
4452
}

0 commit comments

Comments
 (0)