Skip to content

Commit

Permalink
fixes #133
Browse files Browse the repository at this point in the history
  • Loading branch information
yamin8000 committed May 21, 2024
1 parent e5143f0 commit 22832f9
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 53 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ android {
applicationId = appId
minSdk = 21
targetSdk = 34
versionCode = 41
versionName = "1.6.4"
versionCode = 42
versionName = "1.6.5"
vectorDrawables.useSupportLibrary = true
archivesName = "$applicationId-v$versionCode($versionName)"
archivesName = "$applicationId-v$versionCode-n$versionName"
}

buildTypes {
Expand Down
3 changes: 3 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,6 @@
-keepnames class * implements android.os.Parcelable {
public static final ** CREATOR;
}

# This is generated automatically by the Android Gradle plugin.
-dontwarn java.lang.invoke.StringConcatFactory
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
*/

plugins {
id("com.android.application") version "8.4.0" apply false
id("com.android.library") version "8.4.0" apply false
id("com.android.application") version "8.4.1" apply false
id("com.android.library") version "8.4.1" apply false
id("org.jetbrains.kotlin.android") version "1.9.24" apply false
id("com.google.devtools.ksp") version "1.9.24-1.0.20"
}
13 changes: 0 additions & 13 deletions data/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,6 @@ android {
consumerProguardFiles("consumer-rules.pro")
}

buildTypes {
release {
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
isMinifyEnabled = true
}
debug {
isMinifyEnabled = false
}
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
Expand Down
17 changes: 0 additions & 17 deletions data/consumer-rules.pro
Original file line number Diff line number Diff line change
@@ -1,17 +0,0 @@
-dontwarn io.github.yamin8000.owl.data.DataStoreRepository
-dontwarn io.github.yamin8000.owl.data.db.dao.AdvancedDao
-dontwarn io.github.yamin8000.owl.data.db.dao.DAOs$DefinitionDao
-dontwarn io.github.yamin8000.owl.data.db.dao.DAOs$EntryDao
-dontwarn io.github.yamin8000.owl.data.db.dao.DAOs$MeaningDao
-dontwarn io.github.yamin8000.owl.data.db.dao.DAOs$PhoneticDao
-dontwarn io.github.yamin8000.owl.data.db.dao.DAOs$TermDao
-dontwarn io.github.yamin8000.owl.data.db.entity.DefinitionEntity
-dontwarn io.github.yamin8000.owl.data.db.entity.EntryEntity
-dontwarn io.github.yamin8000.owl.data.db.entity.MeaningEntity
-dontwarn io.github.yamin8000.owl.data.db.entity.PhoneticEntity
-dontwarn io.github.yamin8000.owl.data.db.entity.TermEntity
-dontwarn io.github.yamin8000.owl.data.model.Definition
-dontwarn io.github.yamin8000.owl.data.model.Entry
-dontwarn io.github.yamin8000.owl.data.model.License
-dontwarn io.github.yamin8000.owl.data.model.Meaning
-dontwarn io.github.yamin8000.owl.data.model.Phonetic
3 changes: 0 additions & 3 deletions data/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,3 @@
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

# This is generated automatically by the Android Gradle plugin.
-dontwarn java.lang.invoke.StringConcatFactory
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/42.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Startup Crash BUGFIX
13 changes: 0 additions & 13 deletions network/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,6 @@ android {
consumerProguardFiles("consumer-rules.pro")
}

buildTypes {
release {
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
isMinifyEnabled = true
}
debug {
isMinifyEnabled = false
}
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
Expand Down
2 changes: 0 additions & 2 deletions network/consumer-rules.pro
Original file line number Diff line number Diff line change
@@ -1,2 +0,0 @@
-dontwarn io.github.yamin8000.owl.network.APIs$FreeDictionaryAPI
-dontwarn io.github.yamin8000.owl.network.Web

0 comments on commit 22832f9

Please sign in to comment.