From f8b35b0fe546c9f34626155f19dafe16a8f82829 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Wed, 30 Mar 2016 17:50:36 +0200 Subject: android: Add new example viewer. Thanks to Fred Ross-Perry. --- platform/android/example/app/build.gradle | 46 +++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 platform/android/example/app/build.gradle (limited to 'platform/android/example/app/build.gradle') diff --git a/platform/android/example/app/build.gradle b/platform/android/example/app/build.gradle new file mode 100644 index 00000000..5d433deb --- /dev/null +++ b/platform/android/example/app/build.gradle @@ -0,0 +1,46 @@ +apply plugin: 'com.android.model.application' + +model { + + android { + compileSdkVersion = 23 + buildToolsVersion = "23.0.2" + + defaultConfig.with { + applicationId = "com.artifex.mupdf.example" + minSdkVersion.apiLevel = 8 + targetSdkVersion.apiLevel = 16 + versionCode = 1 + versionName = "1.0" + } + } + + android.buildTypes { + release { + minifyEnabled = false + proguardFiles.add(file('proguard-rules.pro')) + } + } + + android.productFlavors { + create("arm") { + ndk.with { + // You can customize the NDK configurations for each + // productFlavors and buildTypes. + abiFilters.add("armeabi") + } + + } + } + + /* This is important, it will run lint checks but won't abort build */ + android.lintOptions { + abortOnError false + } + +} + +dependencies { + compile fileTree(dir: 'libs', include: ['*.jar','*.so']) + compile project(':mupdf') +} -- cgit v1.2.3