Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Core api + fix Android BILLING errors (#2636)
Browse files Browse the repository at this point in the history
* Add "Arrow Exact" dependency

* Optimize build speed

* Remove BILLING permission from the manifest

* Bump version to "4.4.7" (147)
  • Loading branch information
ILIYANGERMANOV authored Sep 16, 2023
1 parent 626ea99 commit 5565140
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
6 changes: 2 additions & 4 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,10 @@
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT" />
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" /> <!-- Show activity over the lockscreen -->

<!-- Show activity over the lockscreen -->
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
<uses-permission android:name="android.permission.WAKE_LOCK" />

<uses-permission android:name="com.android.vending.BILLING" />

<application
android:name=".IvyAndroidApp"
android:allowBackup="false"
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ android.enableJetifier=true
kotlin.code.style=official
# Speed-up Gradle Builds! (OPTIMIZATION)
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
org.gradle.configuration-cache=true

8 changes: 5 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ kotlinx-collections = "0.3.5"
# Android
min-sdk = "28"
compile-sdk = "34"
version-name = "4.4.6"
version-code = "146"
version-name = "4.4.7"
version-code = "147"


# Linters
Expand Down Expand Up @@ -50,6 +50,7 @@ ktor-logging = { module = "io.ktor:ktor-client-logging", version.ref = "ktor" }

# Arrow + Kotest
arrowkt-core = { module = "io.arrow-kt:arrow-core", version.ref = "arrow" }
arrow-exact = { module = "io.arrow-kt:arrow-exact-jvm", version = "0.1.0" }
kotest-junit5 = { module = "io.kotest:kotest-runner-junit5", version.ref = "kotest" }
kotest-assertions = { module = "io.kotest:kotest-assertions-core", version.ref = "kotest" }
kotest-property = { module = "io.kotest:kotest-property", version.ref = "kotest" }
Expand Down Expand Up @@ -132,7 +133,8 @@ kotlin-test = [
"kotlin-coroutines-test"
]
arrow = [
"arrowkt-core"
"arrowkt-core",
"arrow-exact"
]
ktor = [
"kotlinx-serialization-json",
Expand Down

0 comments on commit 5565140

Please sign in to comment.