commit
9406108c61
@ -30,6 +30,7 @@ android {
|
|||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion rootProject.ext.minSdkVersion
|
minSdkVersion rootProject.ext.minSdkVersion
|
||||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||||
|
multiDexEnabled true
|
||||||
versionCode getMyVersionCode()
|
versionCode getMyVersionCode()
|
||||||
versionName "${getMyVersionName()}"
|
versionName "${getMyVersionName()}"
|
||||||
testApplicationId "de.test.antennapod"
|
testApplicationId "de.test.antennapod"
|
||||||
@ -126,6 +127,7 @@ dependencies {
|
|||||||
} else {
|
} else {
|
||||||
System.out.println("app: free build hack, skipping some dependencies")
|
System.out.println("app: free build hack, skipping some dependencies")
|
||||||
}
|
}
|
||||||
|
compile "com.android.support:multidex:$multiDexVersion"
|
||||||
compile "com.android.support:support-v4:$supportVersion"
|
compile "com.android.support:support-v4:$supportVersion"
|
||||||
compile "com.android.support:appcompat-v7:$supportVersion"
|
compile "com.android.support:appcompat-v7:$supportVersion"
|
||||||
compile "com.android.support:design:$supportVersion"
|
compile "com.android.support:design:$supportVersion"
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
package de.danoeh.antennapod;
|
package de.danoeh.antennapod;
|
||||||
|
|
||||||
import android.app.Application;
|
|
||||||
import android.os.Build;
|
import android.os.Build;
|
||||||
import android.os.StrictMode;
|
import android.os.StrictMode;
|
||||||
|
import android.support.multidex.MultiDexApplication;
|
||||||
|
|
||||||
import com.joanzapata.iconify.Iconify;
|
import com.joanzapata.iconify.Iconify;
|
||||||
import com.joanzapata.iconify.fonts.FontAwesomeModule;
|
import com.joanzapata.iconify.fonts.FontAwesomeModule;
|
||||||
@ -13,7 +13,7 @@ import de.danoeh.antennapod.core.feed.EventDistributor;
|
|||||||
import de.danoeh.antennapod.spa.SPAUtil;
|
import de.danoeh.antennapod.spa.SPAUtil;
|
||||||
|
|
||||||
/** Main application class. */
|
/** Main application class. */
|
||||||
public class PodcastApp extends Application {
|
public class PodcastApp extends MultiDexApplication {
|
||||||
|
|
||||||
// make sure that ClientConfigurator executes its static code
|
// make sure that ClientConfigurator executes its static code
|
||||||
static {
|
static {
|
||||||
|
@ -42,6 +42,7 @@ project.ext {
|
|||||||
minSdkVersion = 10
|
minSdkVersion = 10
|
||||||
targetSdkVersion = 23
|
targetSdkVersion = 23
|
||||||
|
|
||||||
|
multiDexVersion = "1.0.1"
|
||||||
supportVersion = "23.4.0"
|
supportVersion = "23.4.0"
|
||||||
commonsioVersion = "2.4"
|
commonsioVersion = "2.4"
|
||||||
commonslangVersion = "3.4"
|
commonslangVersion = "3.4"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user