Skip to content

Commit b1a5ee0

Browse files
committed
Fix the code to fetch the products
1 parent d9ac44c commit b1a5ee0

File tree

4 files changed

+21
-43
lines changed

4 files changed

+21
-43
lines changed

app/build.gradle.kts

+14-30
Original file line numberDiff line numberDiff line change
@@ -13,56 +13,40 @@ android {
1313
applicationId = "com.limurse.iapsample"
1414
minSdk = 21
1515
targetSdk = 33
16-
versionCode = 5
17-
versionName = "1.0.4"
16+
versionCode = 7
17+
versionName = "1.0.6"
1818
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
1919
}
2020

21-
val localProperties = Properties().apply {
22-
val localPropertiesFile = rootProject.file("local.properties")
23-
if (localPropertiesFile.exists()) {
24-
load(localPropertiesFile.inputStream())
25-
}
26-
}
27-
28-
val keystoreProperties = Properties().apply {
29-
val keystorePropertiesFile = rootProject.file("keystore.properties")
30-
if (keystorePropertiesFile.exists()) {
31-
load(keystorePropertiesFile.inputStream())
32-
}
33-
}
34-
3521
buildTypes {
3622
release {
3723
isMinifyEnabled = true
3824
isShrinkResources = true
3925
proguardFiles(
4026
"proguard-rules.pro"
4127
)
42-
when {
43-
!keystoreProperties.isEmpty && localProperties.contains("licenseKey") -> {
44-
val licenseKey = keystoreProperties.getProperty("licenseKey")
45-
resValue("string", "licenseKey", licenseKey)
46-
}
47-
else -> {
48-
resValue("string", "licenseKey", "test")
28+
val keystoreProperties = Properties().apply {
29+
val keystorePropertiesFile = rootProject.file("keystore.properties")
30+
if (keystorePropertiesFile.exists()) {
31+
load(keystorePropertiesFile.inputStream())
4932
}
5033
}
34+
val licenseKey = keystoreProperties.getProperty("licenseKey")
35+
resValue("string", "licenseKey", licenseKey)
5136
}
5237
debug {
5338
isMinifyEnabled = false
5439
proguardFiles(
5540
"proguard-rules.pro"
5641
)
57-
when {
58-
!localProperties.isEmpty && localProperties.contains("licenseKey") -> {
59-
val licenseKey = localProperties.getProperty("licenseKey")
60-
resValue("string", "licenseKey", licenseKey)
61-
}
62-
else -> {
63-
resValue("string", "licenseKey", "test")
42+
val localProperties = Properties().apply {
43+
val localPropertiesFile = rootProject.file("local.properties")
44+
if (localPropertiesFile.exists()) {
45+
load(localPropertiesFile.inputStream())
6446
}
6547
}
48+
val licenseKey = localProperties.getProperty("licenseKey")
49+
resValue("string", "licenseKey", licenseKey)
6650
}
6751
}
6852

app/release/app-release.aab

208 Bytes
Binary file not shown.

iap/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ publishing {
5454
create<MavenPublication>("release") {
5555
groupId = "com.limurse"
5656
artifactId = "Google-IAP"
57-
version = "1.3.2"
57+
version = "1.4.0"
5858

5959
afterEvaluate {
6060
from(components["release"])

iap/src/main/java/com/limurse/iap/BillingService.kt

+6-12
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,12 @@ class BillingService(
4242
billingResult.isOk() -> {
4343
isBillingClientConnected(true, billingResult.responseCode)
4444
nonConsumableKeys.queryProductDetails(BillingClient.ProductType.INAPP) {
45-
CoroutineScope(Dispatchers.IO).launch {
46-
queryPurchases()
47-
}
48-
}
49-
consumableKeys.queryProductDetails(BillingClient.ProductType.INAPP) {
50-
CoroutineScope(Dispatchers.IO).launch {
51-
queryPurchases()
52-
}
53-
}
54-
subscriptionSkuKeys.queryProductDetails(BillingClient.ProductType.SUBS) {
55-
CoroutineScope(Dispatchers.IO).launch {
56-
queryPurchases()
45+
consumableKeys.queryProductDetails(BillingClient.ProductType.INAPP) {
46+
subscriptionSkuKeys.queryProductDetails(BillingClient.ProductType.SUBS) {
47+
CoroutineScope(Dispatchers.IO).launch {
48+
queryPurchases()
49+
}
50+
}
5751
}
5852
}
5953
}

0 commit comments

Comments
 (0)