|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 26
|
|
|
|
buildToolsVersion '26.0.0'
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.google.android.apps.location.gps.gnsslogger"
|
|
|
|
minSdkVersion 24
|
|
|
|
targetSdkVersion 25
|
|
|
|
versionCode 1
|
|
|
|
versionName "2.0.0.0"
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
multiDexEnabled true
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
|
|
|
dexOptions {
|
|
|
|
preDexLibraries = false
|
|
|
|
javaMaxHeapSize "4g" // 2g should be also OK
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
|
|
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
|
})
|
|
|
|
compile 'com.android.support:appcompat-v7:26.+'
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
compile 'com.android.support:design:26.+'
|
|
|
|
compile 'com.android.support:support-v13:26.+'
|
|
|
|
compile 'com.google.android.gms:play-services-location:11.0.2'
|
|
|
|
compile 'com.google.android.gms:play-services-maps:11.0.2'
|
|
|
|
compile project(':pseudorange')
|
|
|
|
compile files('libs/achartengine-1.2.0.jar')
|
|
|
|
}
|
|
|
|
|