We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d0777d commit 15705a1Copy full SHA for 15705a1
app/build.gradle
@@ -33,9 +33,11 @@ android {
33
}
34
shopifyApi {
35
dimension "api"
36
+
37
def shopappShopifyVersion = project.getProperties().get("shopappShopifyVersion")
- shopappShopifyVersion = shopappShopifyVersion != null ? shopappShopifyVersion : "1.0.2"
38
- apiLibrary = "com.github.rubygarage:shopapp-shopify-android:$shopappShopifyVersion"
+ if (shopappShopifyVersion != null) {
39
+ apiLibrary = "com.github.rubygarage:shopapp-shopify-android:$shopappShopifyVersion"
40
+ }
41
42
def appId = project.getProperties().get("appId")
43
applicationId = appId != null ? appId : applicationId
0 commit comments