我正在使用android studio中的Parse SDK。每件事情都工作得很好,直到我在我的項目中啓用multidex,因爲在添加地圖庫後,我的項目超出了64K方法的限制。我得到以下錯誤,當我運行我的應用程序:解析sdk「java.lang.NoSuchMethodError」。 Okhttp庫之間的衝突
java.lang.NoSuchMethodError: com.squareup.okhttp.OkHttpClient.setFollowRedirects
at com.parse.ParseOkHttpClient.<init>(ParseOkHttpClient.java:58)
at com.parse.ParseHttpClient.createClient(ParseHttpClient.java:45)
at com.parse.ParsePlugins$Android.newHttpClient(ParsePlugins.java:175)
at com.parse.ParsePlugins.restClient(ParsePlugins.java:91)
at com.parse.Parse.getEventuallyQueue(Parse.java:615)
at com.parse.Parse.access$800(Parse.java:42)
at com.parse.Parse$1.call(Parse.java:410)
at com.parse.Parse$1.call(Parse.java:407)
at bolts.Task$4.run(Task.java:357)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1080)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:573)
at java.lang.Thread.run(Thread.java:856)
這是我gradle這個文件看起來像:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
dexOptions {
javaMaxHeapSize "4g"
}
defaultConfig {
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.github.clans:fab:1.6.2'
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.google.maps:google-maps-services:0.1.9'
compile 'com.google.maps.android:android-maps-utils:0.4'
compile 'com.balysv:material-ripple:1.0.2'
compile 'com.android.support:cardview-v7:23.3.0'
compile 'com.android.support:recyclerview-v7:23.3.0'
compile 'com.android.support:design:23.3.0'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:multidex:1.0.1'
compile('com.github.afollestad.material-dialogs:core:[email protected]') {
transitive = true
}
compile 'com.parse.bolts:bolts-android:1.4.0'
compile 'com.parse:parse-android:1.13.0'
}
,這是我的清單文件:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.rowburst.traverous.traverous">
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="23" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:name="com.example.MyApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="@string/MAPS_API_KEY" />
<activity
android:name="com.example.LaunchingActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoDisplay">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.example.LoginActivity"
android:theme="@style/Theme.AppCompat.Light.NoActionBar.FullScreen" />
<activity android:name="com.example.MainActivity"></activity>
</application>
這是我的應用程序類:
public class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
Parse.initialize(new Parse.Configuration.Builder(this)
.applicationId(Const.APP_ID)
.server(Const.SERVER_URL)
.build());
}
@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
MultiDex.install(this);
}
}
我覺得問題在於MyApplication類中的Parse.initialize
語句。因爲當我調試我的應用程序,並在該語句上設置一個斷點(每一件事情在該語句之前看起來都很好),當執行initialize語句時,我的應用程序崩潰。我搜索了很多,我沒有找到任何解決這個問題。請幫助...
編輯: 確定後進一步研究,並與gradle這個依賴玩弄我發現這個錯誤不是因爲multiDexEnabled的,而這是因爲通過分析和使用okhttp庫之間的衝突google-地圖服務。 Google-maps-services使用OkHttp:2.0.0,我認爲Parse是使用OkHttp:2.4.0。我認爲OkHttp:2.0.0沒有名稱爲setFollowRedirects
的這種方法,它覆蓋了OkHttp:2.4.0,這就是爲什麼我的應用程序崩潰。如果我刪除谷歌地圖服務編譯聲明我的應用程序工作正常。
注意:如果我做了compile com.squareup.okhttp:okhttp:2.4.0
錯誤不再出現,但我的解析函數(即登錄和註冊回調)給出這個錯誤com.parse.ParseException:java.lang.IllegalArgumentException: value == null
,他們不再工作。
您是否曾嘗試在'super.onCreate();'之前添加'MultiDex.install(this);''? – diogojme
確實很重要嗎?因爲我已經將它添加到了'attachBaseContext'方法中,並且我已經使用log語句進行了檢查,它在'onCreate()'之前被調用。 –
我試過了,還是一樣的錯誤。 –