@@ -2,30 +2,25 @@ apply plugin: 'com.android.application'
2
2
apply plugin : ' kotlin-android'
3
3
apply plugin : ' com.google.gms.google-services'
4
4
apply plugin : ' com.google.android.libraries.mapsplatform.secrets-gradle-plugin'
5
-
6
5
if (getGradle(). getStartParameter(). getTaskRequests(). toString(). contains(" Release" )) {
7
6
apply plugin : ' com.google.firebase.crashlytics'
8
7
}
9
-
10
8
android {
11
- compileSdk 34
12
-
9
+ compileSdk 33
13
10
defaultConfig {
14
11
applicationId " motionapps.sensorbox"
15
12
minSdkVersion 25
16
- targetSdkVersion 34
13
+ targetSdkVersion 33
17
14
versionCode 1000048
18
15
versionName " 3.5.2"
19
16
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
20
17
signingConfig signingConfigs. debug
21
18
}
22
-
23
19
buildTypes {
24
20
release {
25
21
minifyEnabled false
26
22
proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
27
23
}
28
-
29
24
nfrelease{
30
25
initWith release
31
26
}
@@ -37,49 +32,36 @@ android {
37
32
kotlinOptions {
38
33
jvmTarget = JavaVersion . VERSION_17
39
34
}
40
-
41
35
namespace ' com.motionapps.sensorbox'
42
36
}
43
-
44
37
dependencies {
45
38
implementation fileTree(dir : " libs" , include : [" *.jar" ])
46
39
implementation project(path : ' :wearoslib' )
47
40
implementation project(path : ' :SensorServices' )
48
-
49
- implementation ' androidx.core:core-ktx:1.12.0'
41
+ implementation ' androidx.core:core-ktx:1.10.1'
50
42
implementation ' androidx.appcompat:appcompat:1.6.1'
51
43
implementation ' androidx.wear:wear-remote-interactions:1.0.0'
52
-
53
44
testImplementation ' junit:junit:4.13.2'
54
45
androidTestImplementation ' androidx.test.ext:junit:1.1.5'
55
46
androidTestImplementation ' androidx.test.espresso:espresso-core:3.5.1'
56
-
57
47
implementation ' org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3'
58
48
implementation ' org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3'
59
-
60
49
releaseImplementation ' com.google.firebase:firebase-analytics-ktx:21.5.1'
61
50
releaseImplementation ' com.google.firebase:firebase-crashlytics-ktx:18.6.2'
62
-
63
51
implementation ' androidx.percentlayout:percentlayout:1.0.0'
64
- implementation ' androidx.recyclerview:recyclerview:1.3.2 '
52
+ implementation ' androidx.recyclerview:recyclerview:1.3.1 '
65
53
implementation ' androidx.wear:wear:1.3.0'
66
54
implementation ' androidx.preference:preference-ktx:1.2.1'
67
55
implementation ' androidx.legacy:legacy-support-v4:1.0.0'
68
56
implementation ' androidx.constraintlayout:constraintlayout:2.1.4'
69
-
70
-
71
57
implementation ' com.google.android.support:wearable:2.9.0'
72
58
implementation ' com.google.android.gms:play-services-wearable:18.1.0'
73
59
implementation ' com.google.android.gms:play-services-location:21.1.0'
74
60
implementation ' com.google.android.gms:play-services-basement:18.3.0'
75
61
implementation ' com.google.android.gms:play-services-maps:18.2.0'
76
- implementation ' com.google.android.material:material:1.11.0'
77
-
78
- implementation ' androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0'
79
-
62
+ implementation ' com.google.android.material:material:1.9.0'
63
+ implementation ' androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1'
80
64
implementation ' com.github.GrenderG:Toasty:1.5.2'
81
65
implementation ' com.jjoe64:graphview:4.2.2'
82
-
83
66
compileOnly ' com.google.android.wearable:wearable:2.9.0'
84
-
85
- }
67
+ }
0 commit comments