Skip to content

Commit

Permalink
announcement close when action button is tapped
Browse files Browse the repository at this point in the history
  • Loading branch information
imac committed Dec 3, 2024
1 parent 509746b commit 338cc19
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .kotlin/errors/errors-1733210790623.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
kotlin version: 2.0.21
error message: The daemon has terminated unexpectedly on startup attempt #1 with error code: 0. The daemon process output:
1. Kotlin compile daemon is ready

12 changes: 6 additions & 6 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ android {
minSdkVersion 21
targetSdkVersion 34
versionCode 65
versionName "2024.07.12"
versionName "2024.07.13"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand All @@ -55,12 +55,12 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_21
targetCompatibility JavaVersion.VERSION_21
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "17"
}
// kotlinOptions {
// jvmTarget = "17"
// }
configurations {
all { // You should exclude one of them not both of them
exclude group: "com.android.support", module: "support-core-ui"
Expand Down
3 changes: 1 addition & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.oneflow.analytics">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

public interface OFConstants {

String currentVersion = "2024.07.12";//2023.07.14;
String currentVersion = "2024.07.13";//2023.07.14;
String MODE = "prod";//"dev";//"beta";//

String PLATFORM = "Android";
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ buildscript {
}
dependencies {
classpath "com.android.tools.build:gradle:8.3.2"
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.20'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.21'
classpath "com.google.devtools.ksp:symbol-processing-gradle-plugin:2.0.21-1.0.27"
// classpath 'com.google.gms:google-services:4.3.15'
//classpath "com.github.dcendents:android-maven-gradle-plugin:1.5"
Expand Down

0 comments on commit 338cc19

Please sign in to comment.