Manifest & Gradle comment

- #926
- The version of android build results follows latest release(5.2.1)
- Comment for Gradle and its plugin for android
 - `net.fmtlib` package name in the manifest
This commit is contained in:
Park Dong-Ha 2018-11-06 10:08:46 +09:00 committed by Victor Zverovich
parent d286c97753
commit 6b26e3f2d7
2 changed files with 9 additions and 4 deletions

View File

@ -1 +1 @@
<manifest package="org.fmtlib" />
<manifest package="net.fmtlib" />

View File

@ -1,3 +1,4 @@
// General gradle arguments for root project
buildscript {
repositories {
@ -5,8 +6,12 @@ buildscript {
jcenter()
}
dependencies {
// Requires Gradle 4.4+
//
// https://developer.android.com/studio/releases/gradle-plugin
//
// Notice that 3.1.3 here is the version of [Android Gradle Plugin]
// Accroding to URL above you will need Gradle 4.4 or higher
//
classpath 'com.android.tools.build:gradle:3.1.3'
}
}
@ -38,8 +43,8 @@ android {
defaultConfig {
minSdkVersion 21 // Android 5.0+
targetSdkVersion 25 // Follow Compile SDK
versionCode 16 // Follow release count
versionName "4.1.0" // Follow Official version
versionCode 20 // Follow release count
versionName "5.2.1" // Follow Official version
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild {