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:
parent
d286c97753
commit
6b26e3f2d7
@ -1 +1 @@
|
|||||||
<manifest package="org.fmtlib" />
|
<manifest package="net.fmtlib" />
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
// General gradle arguments for root project
|
// General gradle arguments for root project
|
||||||
buildscript {
|
buildscript {
|
||||||
repositories {
|
repositories {
|
||||||
@ -5,8 +6,12 @@ buildscript {
|
|||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
// Requires Gradle 4.4+
|
//
|
||||||
// https://developer.android.com/studio/releases/gradle-plugin
|
// 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'
|
classpath 'com.android.tools.build:gradle:3.1.3'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -38,8 +43,8 @@ android {
|
|||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 21 // Android 5.0+
|
minSdkVersion 21 // Android 5.0+
|
||||||
targetSdkVersion 25 // Follow Compile SDK
|
targetSdkVersion 25 // Follow Compile SDK
|
||||||
versionCode 16 // Follow release count
|
versionCode 20 // Follow release count
|
||||||
versionName "4.1.0" // Follow Official version
|
versionName "5.2.1" // Follow Official version
|
||||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||||
|
|
||||||
externalNativeBuild {
|
externalNativeBuild {
|
||||||
|
Loading…
Reference in New Issue
Block a user