aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAngelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr>2017-04-25 09:40:39 +0200
committerAngelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr>2017-04-25 10:24:51 +0200
commita107d725837bed2966ef6d5e4cd2c085e37896c6 (patch)
treeddcd06f61e7e7d4ffe7c3bfc43e313c9f0f12634
parent6dc10f6d3e410544b1068de2565cab2b9b8aa3ec (diff)
keystore for sign the apk
Change-Id: Iae91aea5f709329210899e9a993c305f49e26dc2 Signed-off-by: Angelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr>
-rw-r--r--README.md1
-rw-r--r--android/build.gradle76
-rwxr-xr-xandroid/gradle/wrapper/gradle-wrapper.properties~6
-rw-r--r--android/viper.keystorebin0 -> 2236 bytes
4 files changed, 82 insertions, 1 deletions
diff --git a/README.md b/README.md
index 4933c577..f71e1be1 100644
--- a/README.md
+++ b/README.md
@@ -46,7 +46,6 @@ For building the player, from the root folder of the project:
```
-
Build the player
-----------------
diff --git a/android/build.gradle b/android/build.gradle
new file mode 100644
index 00000000..d76f0e9d
--- /dev/null
+++ b/android/build.gradle
@@ -0,0 +1,76 @@
+buildscript {
+ repositories {
+ jcenter()
+ }
+
+ dependencies {
+ classpath 'com.android.tools.build:gradle:1.1.0'
+ }
+}
+
+allprojects {
+ repositories {
+ jcenter()
+ }
+}
+
+apply plugin: 'com.android.application'
+
+dependencies {
+ compile fileTree(dir: 'libs', include: ['*.jar'])
+}
+
+android {
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ /*applicationVariants.all { variant ->
+ variant.outputs.each { output ->
+ project.ext { appName = 'viper' }
+ def newName = output.outputFile.name
+ newName = newName.replace("android", "$project.ext.appName")
+ output.outputFile = new File(output.outputFile.parent, newName)
+ }
+ }*/
+ }
+ debug {
+ minifyEnabled false
+ debuggable true
+ jniDebuggable true
+ }
+ }
+ /*******************************************************
+ * The following variables:
+ * - androidBuildToolsVersion,
+ * - androidCompileSdkVersion
+ * - qt5AndroidDir - holds the path to qt android files
+ * needed to build any Qt application
+ * on Android.
+ *
+ * are defined in gradle.properties file. This file is
+ * updated by QtCreator and androiddeployqt tools.
+ * Changing them manually might break the compilation!
+ *******************************************************/
+
+ compileSdkVersion androidCompileSdkVersion.toInteger()
+
+ buildToolsVersion androidBuildToolsVersion
+
+ sourceSets {
+ main {
+ manifest.srcFile 'AndroidManifest.xml'
+ java.srcDirs = [qt5AndroidDir + '/src', 'src', 'java']
+ aidl.srcDirs = [qt5AndroidDir + '/src', 'src', 'aidl']
+ res.srcDirs = [qt5AndroidDir + '/res', 'res']
+ resources.srcDirs = ['src']
+ renderscript.srcDirs = ['src']
+ assets.srcDirs = ['assets']
+ jniLibs.srcDirs = ['libs']
+ }
+ }
+
+ lintOptions {
+ abortOnError false
+ }
+}
diff --git a/android/gradle/wrapper/gradle-wrapper.properties~ b/android/gradle/wrapper/gradle-wrapper.properties~
new file mode 100755
index 00000000..1e61d1fd
--- /dev/null
+++ b/android/gradle/wrapper/gradle-wrapper.properties~
@@ -0,0 +1,6 @@
+#Wed Apr 10 15:27:10 PDT 2013
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=http\://services.gradle.org/distributions/gradle-1.12-all.zip
diff --git a/android/viper.keystore b/android/viper.keystore
new file mode 100644
index 00000000..aa293c07
--- /dev/null
+++ b/android/viper.keystore
Binary files differ