AndroidGradleSignPlugin

Gradle plugin to prompt for Android release keystore passwords

License

License

GroupId

GroupId

com.alexvasilkov
ArtifactId

ArtifactId

android-sign-release
Last Version

Last Version

0.8.1
Release Date

Release Date

Type

Type

jar
Description

Description

AndroidGradleSignPlugin
Gradle plugin to prompt for Android release keystore passwords
Project URL

Project URL

https://github.com/alexvasilkov/AndroidGradleSignPlugin
Source Code Management

Source Code Management

https://github.com/alexvasilkov/AndroidGradleSignPlugin

Download android-sign-release

How to add to project

<!-- https://jarcasting.com/artifacts/com.alexvasilkov/android-sign-release/ -->
<dependency>
    <groupId>com.alexvasilkov</groupId>
    <artifactId>android-sign-release</artifactId>
    <version>0.8.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.alexvasilkov/android-sign-release/
implementation 'com.alexvasilkov:android-sign-release:0.8.1'
// https://jarcasting.com/artifacts/com.alexvasilkov/android-sign-release/
implementation ("com.alexvasilkov:android-sign-release:0.8.1")
'com.alexvasilkov:android-sign-release:jar:0.8.1'
<dependency org="com.alexvasilkov" name="android-sign-release" rev="0.8.1">
  <artifact name="android-sign-release" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.alexvasilkov', module='android-sign-release', version='0.8.1')
)
libraryDependencies += "com.alexvasilkov" % "android-sign-release" % "0.8.1"
[com.alexvasilkov/android-sign-release "0.8.1"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

GradleAndroidSignPlugin

Maven Central

Gradle plugin to prompt for Android release keystore passwords.

How to use

In build.gradle file add following lines:

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:x.x.x'
        classpath 'com.alexvasilkov:android-sign-release:x.x.x'
    }
}

apply plugin: 'com.android.application'
apply plugin: 'com.alexvasilkov.sign'

android {
    signingConfigs {
        release {
            storeFile file('{your_release_keystore}')
            keyAlias '{release_keystore_alias}'
        }
    }

    buildTypes {
        release {
            signingConfig signingConfigs.release
        }
    }
}

For multiple flavors use:

android {
    signingConfigs {
        flavor1 {
            storeFile file('{your_release_keystore1}')
            keyAlias '{release_keystore_alias1}'
        }
        flavor2 {
            storeFile file('{your_release_keystore2}')
            keyAlias '{release_keystore_alias2}'
        }
    }

    buildTypes {
        release {
            productFlavors {
                flavor1 {
                    signingConfig signingConfigs.flavor1
                }
                flavor2 {
                    signingConfig signingConfigs.flavor2
                }
            }
        }
    }
}

You can build release apk with gradlew -assembleRelease, it will be generated to build/outputs/apk/*.apk

License

Copyright 2015 Alex Vasilkov

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Versions

Version
0.8.1
0.8
0.7
0.5
0.4
0.3.7
0.3.6