File tree Expand file tree Collapse file tree 4 files changed +6
-10
lines changed
src/main/java/com/oneflow/analytics/utils Expand file tree Collapse file tree 4 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,7 @@ plugins {
21
21
id ' com.android.library'
22
22
// id 'com.android.application'
23
23
id ' kotlin-android'
24
- // id 'kotlin-kapt'
25
- id ' com.google.devtools.ksp'
24
+ id ' kotlin-kapt'
26
25
// id 'com.google.gms.google-services'
27
26
}
28
27
@@ -37,7 +36,7 @@ android {
37
36
minSdkVersion 21
38
37
targetSdkVersion 34
39
38
versionCode 65
40
- versionName " 2024.12.25 "
39
+ versionName " 2024.07.15 "
41
40
multiDexEnabled true
42
41
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
43
42
}
@@ -58,9 +57,6 @@ android {
58
57
sourceCompatibility JavaVersion . VERSION_17
59
58
targetCompatibility JavaVersion . VERSION_17
60
59
}
61
- kotlinOptions {
62
- jvmTarget = " 17"
63
- }
64
60
configurations {
65
61
all { // You should exclude one of them not both of them
66
62
exclude group : " com.android.support" , module : " support-core-ui"
@@ -114,7 +110,7 @@ dependencies {
114
110
implementation ' com.google.code.gson:gson:2.10.1'
115
111
116
112
implementation " androidx.room:room-runtime:$room_version "
117
- ksp " androidx.room:room-compiler:$room_version "
113
+ kapt " androidx.room:room-compiler:$room_version "
118
114
// annotationProcessor "androidx.room:room-compiler:$room_version"
119
115
// annotationProcessor "android.arch.persistence.room:compiler:1.1.1"
120
116
Original file line number Diff line number Diff line change 20
20
21
21
public interface OFConstants {
22
22
23
- String currentVersion = "2024.12.25 " ;//2023.07.14;
23
+ String currentVersion = "2024.07.15 " ;//2023.07.14;
24
24
String MODE = "prod" ;//"dev";//"beta";//
25
25
26
26
String PLATFORM = "Android" ;
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ buildscript {
25
25
dependencies {
26
26
classpath " com.android.tools.build:gradle:8.3.2"
27
27
classpath ' org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.21'
28
- classpath " com.google.devtools.ksp:symbol-processing-gradle-plugin:2.0.21-1.0.27"
29
28
// classpath 'com.google.gms:google-services:4.3.15'
30
29
// classpath "com.github.dcendents:android-maven-gradle-plugin:1.5"
31
30
// classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.5'
Original file line number Diff line number Diff line change @@ -34,4 +34,5 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
34
34
# https://developer.android.com/topic/libraries/support-library/androidx-rn
35
35
android.useAndroidX =true
36
36
# Automatically convert third-party libraries to use AndroidX
37
- android.enableJetifier =false
37
+ android.enableJetifier =false
38
+ kotlin.jvm.target.validation.mode =IGNORE
You can’t perform that action at this time.
0 commit comments