...
Configure Signing Configurations:
...
Save the
key.jks
file inside theandroid/app/
directory of your Flutter project.Update
android/app/build.gradle
...
to include signing configurations:
Code Block |
---|
android { signingConfigs { debug { storeFile file('key.jks') storePassword 'android' keyAlias 'androiddebugkey' keyPassword 'android' } release { storeFile file('key.jks') storePassword 'android' keyAlias 'androiddebugkey' keyPassword 'android' } } buildTypes { debug { signingConfig = signingConfigs.debug } release { signingConfig = signingConfigs.release } } } |