Skip to content

Commit

Permalink
Merge pull request #31 from vipulyaara/develop
Browse files Browse the repository at this point in the history
Release 0.38.0
  • Loading branch information
vipulyaara committed Sep 5, 2024
2 parents b96c808 + f945b4b commit 7eccc68
Show file tree
Hide file tree
Showing 97 changed files with 10,076 additions and 785 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,5 @@ fastlane/readme.md
/.idea/misc.xml

/Sarahang/

/node_modules/
11 changes: 3 additions & 8 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ android {

defaultConfig {
applicationId = "com.kafka.user"
versionCode = 76
versionName = "0.36.0"
versionCode = 78
versionName = "0.38.0"

val properties = Properties()
properties.load(project.rootProject.file("local.properties").inputStream())
Expand All @@ -35,11 +35,6 @@ android {
"PIPELESS_AUTH_TOKEN",
properties["PIPELESS_AUTH_TOKEN"]?.toString() ?: System.getenv("PIPELESS_AUTH_TOKEN")
)
buildConfigField(
"String",
"OPEN_AI_API_KEY",
properties["OPEN_AI_API_KEY"]?.toString() ?: System.getenv("OPEN_AI_API_KEY")
)
}

compileOptions {
Expand Down Expand Up @@ -152,7 +147,6 @@ dependencies {
implementation(projects.ui.theme)
implementation(projects.ui.webview)

implementation(libs.accompanist.navigation.material)
implementation(libs.accompanist.permissions)
implementation(libs.androidx.activity.compose)
implementation(libs.androidx.hilt.compose)
Expand All @@ -165,6 +159,7 @@ dependencies {
implementation(libs.compose.animation.animation)
implementation(libs.compose.foundation.foundation)
implementation(libs.compose.foundation.layout)
implementation(libs.compose.material.navigation)
implementation(libs.compose.ui.tooling)
implementation(libs.compose.ui.ui)
implementation(libs.compose.ui.util)
Expand Down
5 changes: 5 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
-dontwarn com.google.errorprone.annotations.*

-keepclassmembers class com.kafka.data.entities.** { *; }
-keepclassmembers class org.kafka.navigation.graph.** { *; }

-keep class com.kafka.data.entities.** {
<fields>;
Expand All @@ -68,6 +69,10 @@
<fields>;
<init>(...);
}
-keep class org.kafka.navigation.graph.** {
<fields>;
<init>(...);
}

-keep class com.google.android.gms.** { *; }
-keep class com.google.firebase.** { *; }
Expand Down
Loading

0 comments on commit 7eccc68

Please sign in to comment.