1

Parse は初めてで、ParseUI-Login と ParseUI-Widget に問題があります。

プロジェクトに ParseLoginUI をモジュールとしてインポートした後、[アプリの実行] ボタンをクリックすると、エラーが発生しました。

私は Han とまったく同じ問題を抱えています ( ParseLoginUI をモジュールとしてインポートするときに Error:Execution failed for task ':app:dexDebug'. when importing ParseLoginUI as a module )、彼が提供した解決策は私にとってはうまくいきません..

また、説明にある「プロジェクトのクローン」が何を意味するのかわからないことにも言及するかもしれません。zipをダウンロードし、「ダウンロード」からモジュールをandroid studioにインポートしました。

以下は私のアプリbuild.gradleです

apply plugin: 'com.android.application'
android {
    compileSdkVersion 23
    buildToolsVersion "23.0.1"

    defaultConfig {
        applicationId "com.example.joakim.parsetest"
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}
dependencies {
    compile fileTree(include: ['*.jar'], exclude: 'android-support-v4.jar',dir: 'libs')
    compile 'com.android.support:appcompat-v7:23.0.1'
    compile project(':ParseUI-Login')
    compile project(':ParseUI-Widget')
}

以下はParseUI-Loginのbuild.gradleです

apply plugin: 'android-library'

dependencies {
    compile 'com.android.support:support-v4:22.0.0'
    compile 'com.parse:parse-android:1.10.1'

    provided 'com.facebook.android:facebook-android-sdk:4.0.1'
    provided files("$rootProject.projectDir/ParseUI-Login/libs/ParseFacebookUtilsV4-1.10.1.jar")
    provided files("$rootProject.projectDir/ParseUI-Login/libs/ParseTwitterUtils-1.10.1.jar")
}

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.1"

    defaultConfig {
        minSdkVersion 9
        targetSdkVersion 21
    }
}

以下はParseUIウィジェットbuild.gradleです

apply plugin: 'com.android.library'

dependencies {
    compile 'com.parse:parse-android:1.10.1'

    androidTestCompile 'com.google.dexmaker:dexmaker:1.2'
    androidTestCompile 'com.google.dexmaker:dexmaker-mockito:1.2'
    androidTestCompile 'org.mockito:mockito-core:1.10.19'
    androidTestCompile 'org.skyscreamer:jsonassert:1.2.3'
}

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.1"

    defaultConfig {
        minSdkVersion 9
        targetSdkVersion 21
    }
}
4

1 に答える 1

1

アプリ build.gradle でこれを試してください:

dependencies {
    compile fileTree(include: ['*.jar'], exclude: 'android-support-v4.jar',dir: 'libs')
    compile 'com.android.support:appcompat-v7:23.0.1'
    compile 'com.parse.bolts:bolts-android:1.1.4'
    compile 'com.parse:parseui-login-android:0.0.1' 
}

アプリの ParseUI-Login で同様の問題が発生しましたが、これでうまくいきました。

于 2015-11-16T04:17:58.113 に答える