AndroidGradleSignPlugin

Gradle plugin to prompt for Android release keystore passwords

Лицензия

Лицензия

Группа

Группа

com.alexvasilkov
Идентификатор

Идентификатор

android-sign-release
Последняя версия

Последняя версия

0.8.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

AndroidGradleSignPlugin
Gradle plugin to prompt for Android release keystore passwords
Ссылка на сайт

Ссылка на сайт

https://github.com/alexvasilkov/AndroidGradleSignPlugin
Система контроля версий

Система контроля версий

https://github.com/alexvasilkov/AndroidGradleSignPlugin

Скачать android-sign-release

Как подключить последнюю версию

<!-- 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"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

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.

Версии библиотеки

Версия
0.8.1
0.8
0.7
0.5
0.4
0.3.7
0.3.6