Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
apply plugin: 'com.android.library'

def _ext = rootProject.ext;

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
compileSdkVersion _ext.has('compileSdkVersion') ? _ext.compileSdkVersion : 26;
buildToolsVersion _ext.has('buildToolsVersion') ? _ext.buildToolsVersion : '26.0.1';

defaultConfig {
minSdkVersion 16
targetSdkVersion 22
targetSdkVersion _ext.has('targetSdkVersion') ? _ext.targetSdkVersion : 26;
versionCode 1
versionName "1.0"
ndk {
Expand Down