Gradle dependecy replaced with JAR
This commit is contained in:
parent
ca40d8a57b
commit
1523c82ecf
4 changed files with 8 additions and 10 deletions
|
@ -40,7 +40,6 @@ android {
|
|||
defaultConfig {
|
||||
minSdkVersion System.getenv("MIN_SDK_VERSION") ? System.getenv("MIN_SDK_VERSION").toInteger() : 14
|
||||
targetSdkVersion 23
|
||||
multiDexEnabled true
|
||||
versionCode System.getenv("APK_NUMBER_VERSION") ? System.getenv("APK_NUMBER_VERSION").toInteger() : versionCode
|
||||
//versionName already assigned in code
|
||||
//versionName System.getenv("APK_VERSION")? System.getenv("APK_VERSION").toString(): versionName
|
||||
|
@ -323,9 +322,9 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
compile project(path: ":OsmAnd-java", configuration: "android")
|
||||
compile project(":eclipse-compile:design")
|
||||
compile project(":eclipse-compile:cardview")
|
||||
compile project(path: ':OsmAnd-java', configuration: 'android')
|
||||
compile project(':eclipse-compile:design')
|
||||
compile project(':eclipse-compile:cardview')
|
||||
// compile project(":eclipse-compile:recyclerview")
|
||||
compile fileTree(
|
||||
dir: "libs",
|
||||
|
@ -344,5 +343,5 @@ dependencies {
|
|||
qtcoredebugCompile "net.osmand:OsmAndCore_android:0.1-SNAPSHOT@aar"
|
||||
qtcoreCompile "net.osmand:OsmAndCore_androidNativeRelease:0.1-SNAPSHOT@aar"
|
||||
qtcoreCompile "net.osmand:OsmAndCore_android:0.1-SNAPSHOT@aar"
|
||||
compile 'com.android.support:multidex:1.0.0'
|
||||
compile files('libs/android-support-multidex.jar')
|
||||
}
|
||||
|
|
BIN
OsmAnd/libs/android-support-multidex.jar
Normal file
BIN
OsmAnd/libs/android-support-multidex.jar
Normal file
Binary file not shown.
|
@ -63,8 +63,6 @@ import java.util.Locale;
|
|||
import btools.routingapp.BRouterServiceConnection;
|
||||
import btools.routingapp.IBRouterService;
|
||||
|
||||
|
||||
|
||||
public class OsmandApplication extends MultiDexApplication {
|
||||
public static final String EXCEPTION_PATH = "exception.log"; //$NON-NLS-1$
|
||||
private static final org.apache.commons.logging.Log LOG = PlatformUtil.getLog(OsmandApplication.class);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
apply plugin: 'com.android.application'
|
||||
|
||||
android {
|
||||
compileSdkVersion 21
|
||||
compileSdkVersion 23
|
||||
buildToolsVersion "23.0.1"
|
||||
|
||||
signingConfigs {
|
||||
|
@ -22,7 +22,7 @@ android {
|
|||
|
||||
defaultConfig {
|
||||
minSdkVersion 9
|
||||
targetSdkVersion 21
|
||||
targetSdkVersion 23
|
||||
}
|
||||
|
||||
lintOptions {
|
||||
|
@ -64,4 +64,5 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
compile project(":eclipse-compile:appcompat")
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue