Tuesday, August 29, 2017

[Android applocation] Wallpaper





- Download many wallpaper full HD:
- include :
 + Sony
 + Samsung
 + iPhone
 + HTC
 + etc...
get notification when have new wallpaper
Enjoy this application

Download app from Google Play

Sunday, August 20, 2017

Android build apk file with command line




Google Play

build apk
- gradlew assembleDebug
build apk when running device
    for debug
    - gradlew installDebug
    for release
    - gradlew installRelease


buildTypes {
        release {
            minifyEnabled false
            signingConfig signingConfigs.release
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            buildConfigField "boolean", "ENABLE_DEBUG", "false"
        }
        debug {
            buildConfigField "boolean", "ENABLE_DEBUG", "true"
        }
    }