Skip to content

Commit 47189cb

Browse files
author
imac
committed
close announcement window either inbox, pop up or banner once action button is clicked
1 parent 53ff279 commit 47189cb

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
lines changed

app/build.gradle

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ plugins {
2121
id 'com.android.library'
2222
// id 'com.android.application'
2323
id 'kotlin-android'
24-
// id 'kotlin-kapt'
25-
id 'com.google.devtools.ksp'
24+
id 'kotlin-kapt'
2625
// id 'com.google.gms.google-services'
2726
}
2827

@@ -37,7 +36,7 @@ android {
3736
minSdkVersion 21
3837
targetSdkVersion 34
3938
versionCode 65
40-
versionName "2024.12.25"
39+
versionName "2024.07.15"
4140
multiDexEnabled true
4241
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
4342
}
@@ -58,9 +57,6 @@ android {
5857
sourceCompatibility JavaVersion.VERSION_17
5958
targetCompatibility JavaVersion.VERSION_17
6059
}
61-
kotlinOptions {
62-
jvmTarget = "17"
63-
}
6460
configurations {
6561
all { // You should exclude one of them not both of them
6662
exclude group: "com.android.support", module: "support-core-ui"
@@ -114,7 +110,7 @@ dependencies {
114110
implementation 'com.google.code.gson:gson:2.10.1'
115111

116112
implementation "androidx.room:room-runtime:$room_version"
117-
ksp "androidx.room:room-compiler:$room_version"
113+
kapt "androidx.room:room-compiler:$room_version"
118114
//annotationProcessor "androidx.room:room-compiler:$room_version"
119115
// annotationProcessor "android.arch.persistence.room:compiler:1.1.1"
120116

app/src/main/java/com/oneflow/analytics/utils/OFConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
public interface OFConstants {
2222

23-
String currentVersion = "2024.12.25";//2023.07.14;
23+
String currentVersion = "2024.07.15";//2023.07.14;
2424
String MODE = "prod";//"dev";//"beta";//
2525

2626
String PLATFORM = "Android";

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ buildscript {
2525
dependencies {
2626
classpath "com.android.tools.build:gradle:8.3.2"
2727
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"
2928
// classpath 'com.google.gms:google-services:4.3.15'
3029
//classpath "com.github.dcendents:android-maven-gradle-plugin:1.5"
3130
//classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.5'

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,5 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
3434
# https://developer.android.com/topic/libraries/support-library/androidx-rn
3535
android.useAndroidX=true
3636
# Automatically convert third-party libraries to use AndroidX
37-
android.enableJetifier=false
37+
android.enableJetifier=false
38+
kotlin.jvm.target.validation.mode=IGNORE

0 commit comments

Comments
 (0)