Created
July 5, 2018 10:47
-
-
Save mojtabamarashee/dc1e9271d12d010aa0239f49187459f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="https://cdn.rawgit.com/Killercodes/281792c423a4fe5544d9a8d36a4430f2/raw/36c2eb3e0c44133880485a143717bda9d180f2c1/GistDarkCode.css" rel="stylesheet" type="text/css"> | |
mkdir gradle | |
cd gradle | |
/usr/share/android-sdk/tools/android create project -p . -a MainActivity -k com.domain.myproject -t android-21 -g -v 0.12.+ | |
keytool -genkey -v -keystore my-release-key.keystore -alias my-key-alias -keyalg RSA -keysize 2048 -validity 10000 | |
build.gradle: | |
buildscript { | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:0.12.+' | |
} | |
} | |
apply plugin: 'android' | |
android { | |
compileSdkVersion 'android-21' | |
buildToolsVersion '23.0.3' | |
signingConfigs { | |
release { | |
storeFile file('my-release-key.keystore') | |
storePassword '*******' | |
keyAlias 'my-key-alias' | |
keyPassword '*******' | |
} | |
} | |
buildTypes { | |
release { | |
runProguard false | |
proguardFile getDefaultProguardFile('proguard-android.txt') | |
signingConfig signingConfigs.release | |
} | |
} | |
} | |
./gradlew assembleRelease |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment