September 2019
Beginner
512 pages
12h 52m
English
The application ID value is what makes an app unique in Play Store and the Android system. A good practice is to use the organization domain as the package and have the app name following it. In our case, we are using com.example.handson as the application ID. Make sure to review this value, as it cannot be changed after you upload the app to the store.
You can find this code in the android/app/build.gradle file, inside the defaultConfig section:
defaultConfig { applicationId "com.example.handson" minSdkVersion 16 targetSdkVersion 28 multiDexEnabled true versionCode flutterVersionCode.toInteger() versionName flutterVersionName testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } ...Read now
Unlock full access