aboutsummaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorPark Dong-Ha <luncliff@gmail.com>2018-11-06 10:08:46 +0900
committerVictor Zverovich <victor.zverovich@gmail.com>2018-11-05 17:31:09 -0800
commit6b26e3f2d7132d8a772ce3052bf7f9a7ecc81bb3 (patch)
treee3be5db3574ffe5e0af4d97b983a71feb787e2e7 /support
parentd286c9775388242b11fec92284c82c0b32bb037c (diff)
downloadfmtlib-6b26e3f2d7132d8a772ce3052bf7f9a7ecc81bb3.tar.gz
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
Diffstat (limited to 'support')
-rw-r--r--support/AndroidManifest.xml2
-rw-r--r--support/build.gradle11
2 files changed, 9 insertions, 4 deletions
diff --git a/support/AndroidManifest.xml b/support/AndroidManifest.xml
index da9f5051..b5281fee 100644
--- a/support/AndroidManifest.xml
+++ b/support/AndroidManifest.xml
@@ -1 +1 @@
-<manifest package="org.fmtlib" />
+<manifest package="net.fmtlib" />
diff --git a/support/build.gradle b/support/build.gradle
index d0f0db3c..797cf491 100644
--- a/support/build.gradle
+++ b/support/build.gradle
@@ -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 {