Posts

Showing posts from July, 2026

Application Logo Update Without App new build

Development Mode   -------------------------------------------------------------------------------------------------------------------------------- AndroidManifest.xml (debug) < manifest xmlns:android = "http://schemas.android.com/apk/res/android"     xmlns:tools = "http://schemas.android.com/tools" >     < application >         < activity             android:name = ".MainActivity"             android:exported = "true"             tools:replace = "android:exported" >             < intent-filter >                 < action android:name = "android.intent.action.MAIN" />                 < category android:name = "android.intent.category.LAUNCHER" />             </ intent-filter ...

Android & Flutter App Live JKS Create

  1) build.gradle JAVA (App) def keystoreProperties = new Properties() def keystorePropertiesFile = rootProject.file("key.properties") if (keystorePropertiesFile.exists()) {    keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) } => Android    signingConfigs {        create("release") {             keyAlias = keystoreProperties["keyAlias"] as String             keyPassword = keystoreProperties["keyPassword"] as String             storeFile = keystoreProperties["storeFile"] ? file(keystoreProperties['storeFile']) : null             storePassword = keystoreProperties["storePassword"] as String        }    }     buildTypes {         release {             // TODO: Add your own signing config for the release build. ...