I'm facing a strange problem : i've purchased a license for iOS and Android.
Currently i'm working on the android app, i've set the applicationId setted when purchase the license on my graddle defaultConfig.
I call the Key from a string ressource but on my screen there is a layer saying "License Key Missing".
When I was developping using a trial license that worked.
Is there a link between defaultConfig and and root's package name?
S
Simon 248601
said
over 7 years ago
Hi Thibaud,
the defaultConfig configures the core settings of your app. The package name is only set in the gradle file. Do you use product flavors or special build types which override the defaultConfig applicationId?
Best regards, Simon
T
Thibaud RENAUX
said
over 7 years ago
I again Simon :)
Here is informations about my project graddle file:
the package name defined in the manifest do not have to match the applicationId. When you registered the license with us, you provided us with a package name. This exact package name has to be set as your applicationId.
In your productFlavor custom you are overriding the applicationId. So if you registered "com.mypackagename" with us but use "com.mypackagename.custom" in productFlavor custom, productFlavor custom won't work.
Best regards, Simon
T
Thibaud RENAUX
said
over 7 years ago
So if the applicationId I said to you is "com.company.app.RA" and if I need the key in productFlavors , can I do like this ? :
Thibaud RENAUX