Skip to content

Commit 8f8f9ce

Browse files
committed
Adding the billing module for future "thank you-s" from in-apps.
1 parent c26dd94 commit 8f8f9ce

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

app/build.gradle.kts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ android {
1616
minSdk = 26
1717
//noinspection EditedTargetSdkVersion
1818
targetSdk = 35
19-
versionCode = 17
20-
versionName = "3.0.6"
19+
versionCode = 19
20+
versionName = "3.0.8"
2121
buildConfigField("String", "APP_VERSION", "\"$versionName-$versionCode\"")
2222

2323
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
@@ -139,4 +139,9 @@ dependencies {
139139

140140
// Anki
141141
implementation("com.github.ankidroid:Anki-Android:api-v1.1.0")
142+
143+
144+
implementation("com.android.billingclient:billing:7.1.1")
145+
implementation("com.android.billingclient:billing-ktx:6.1.0")
146+
142147
}

app/proguard-rules.pro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@
2222
-dontwarn com.yalantis.ucrop**
2323
-keep class com.yalantis.ucrop.** { *; }
2424
-keep class com.yalantis.ucrop** { *; }
25-
-keep interface com.yalantis.ucrop** { *; }
25+
-keep interface com.yalantis.ucrop** { *; }
26+
-keep class com.android.billingclient.** { *; }

0 commit comments

Comments
 (0)