mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-02-18 12:50:34 +01:00
fix #102, enable multidex
This commit is contained in:
parent
c38ac98f61
commit
ce6afbabb8
@ -12,6 +12,7 @@ android {
|
|||||||
targetSdkVersion 25
|
targetSdkVersion 25
|
||||||
versionCode 51
|
versionCode 51
|
||||||
versionName "2.1.3"
|
versionName "2.1.3"
|
||||||
|
multiDexEnabled true
|
||||||
}
|
}
|
||||||
|
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
@ -36,6 +37,7 @@ dependencies {
|
|||||||
compile 'joda-time:joda-time:2.9.1'
|
compile 'joda-time:joda-time:2.9.1'
|
||||||
compile 'com.facebook.stetho:stetho:1.4.1'
|
compile 'com.facebook.stetho:stetho:1.4.1'
|
||||||
compile 'com.bignerdranch.android:recyclerview-multiselect:0.2'
|
compile 'com.bignerdranch.android:recyclerview-multiselect:0.2'
|
||||||
|
compile 'com.android.support:multidex:1.0.1'
|
||||||
|
|
||||||
compile 'com.google.code.gson:gson:2.8.0'
|
compile 'com.google.code.gson:gson:2.8.0'
|
||||||
compile('com.google.http-client:google-http-client-gson:1.22.0') {
|
compile('com.google.http-client:google-http-client-gson:1.22.0') {
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
package com.simplemobiletools.calendar
|
package com.simplemobiletools.calendar
|
||||||
|
|
||||||
import android.app.Application
|
import android.support.multidex.MultiDexApplication
|
||||||
|
|
||||||
import com.facebook.stetho.Stetho
|
import com.facebook.stetho.Stetho
|
||||||
|
|
||||||
class App : Application() {
|
class App : MultiDexApplication() {
|
||||||
override fun onCreate() {
|
override fun onCreate() {
|
||||||
super.onCreate()
|
super.onCreate()
|
||||||
Stetho.initializeWithDefaults(this)
|
Stetho.initializeWithDefaults(this)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user