Skip to content

The Github Action allows you to build APK from any android studio project repo url

License

Notifications You must be signed in to change notification settings

yurishomin/apk-builder

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

APK Builder

APK Builder CI

The Github Action allows you to build APK from any android studio project repo url

Usage

Simply goto actions and click on run workflow and provide your username and public repo. The output apk will be generated as part of build artifacts

image

Note

Make sure to specify signing config in app/build.gradle

android {

    signingConfigs {
        release {
            keyAlias 'myKeyAlias'
            keyPassword 'password'
            storePassword 'password'
            storeFile file("${rootDir}/key.jks")
        }
    }
    
    
      buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
            signingConfig signingConfigs.release
        }
        debug {
            signingConfig signingConfigs.release
        }
    }
    
}

About

The Github Action allows you to build APK from any android studio project repo url

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published