2017-10-03 27 views
1

enter image description hereエラー:GradleのDSLの方法が見つかりません:コンパイル()

こんにちは、私たちは私たちのサイトのAndroidアプリを作成しましたが、今あなたがAPKにそれを回すにしたいが、私は次のように遭遇しましたエラーと私はコンパイルで移動することはできません。

Error:(60, 0) Gradle DSL method not found: 'compile()' 
    Possible causes:<ul><li>The project 'Template' may be using a version of the Android Gradle plug-in that does not contain the method (e.g. 'testCompile' was added in 1.1.0). 
    <a href="fixGradleElements">Upgrade plugin to version 2.3.3 and sync project</a></li><li>The project 'Template' may be using a version of Gradle that does not contain the method. 
    <a href="open.wrapper.file">Open Gradle wrapper file</a></li><li>The build file may be missing a Gradle plugin. 
    <a href="apply.gradle.plugin">Apply Gradle plugin</a></li> 

ここでは、(プロジェクト:テンプレート)build.gradleだ

// Top-level build file where you can add configuration options common to all sub-projects/modules. 
allprojects { 
    repositories { 
     jcenter() 
     maven { 
      url "https://maven.google.com" 
     } 
     maven { 
      url 'https://jitpack.io' 
     } 
    } 
} 

buildscript { 
    dependencies { 
     classpath 'com.android.tools.build:gradle:2.3.3' 
    } 
} 

ext { 
    supportlib_version = '26.0.2' 
    gps_version = '11.2.0' 
} 

//Ensure that all dependencies use the same version of the Android Support library 
subprojects { 
    project.configurations.all { 
     resolutionStrategy.eachDependency { details -> 
      if (details.requested.group == 'com.android.support' 
        && !details.requested.name.contains('multidex')) { 
       details.useVersion "$supportlib_version" 
      } 
      if (details.requested.group == 'com.google.android.gms' 
        && !details.requested.name.contains('multidex')) { 
       details.useVersion "$gps_version" 
      } 
     } 
    } 
} 

allprojects { 
    repositories { 
     jcenter() 
    } 
} 

と第二build.gradle(モジュール:アプリ)

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 26 
    buildToolsVersion '26.0.1' 
    defaultConfig { 
     applicationId 'com.mayermayer.transport' 
     minSdkVersion 16 
     targetSdkVersion 26 
     compileOptions { 
      sourceCompatibility JavaVersion.VERSION_1_7 
      targetCompatibility JavaVersion.VERSION_1_7 
     } 

     //Optionally configure your OneSignal IDs below 
     manifestPlaceholders = [manifestApplicationId   : "${applicationId}", 
           onesignal_app_id    : "", 
           onesignal_google_project_number: ""] 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 
     } 
    } 
    dexOptions { 
     jumboMode true 
    } 
    productFlavors { 
    } 
} 

repositories { 
    flatDir { 
     dirs 'libs' 
    } 
    maven { 
     url "https://jitpack.io" 
    } 
    jcenter(); 
} 

dependencies { 
    compile 'com.devbrackets.android:exomedia:4.0.3' 
    //TV 
    compile 'com.cleveroad:audiovisualization:1.0.0' 
    //Radio 
    compile 'com.squareup.okhttp3:okhttp:3.3.1' 
    //WC 
    compile 'org.jsoup:jsoup:1.8.3' 
    compile 'com.onesignal:OneSignal:[3.6.0,4.0.0)' 
    compile 'com.squareup.picasso:picasso:2.5.2' 
    compile 'com.booking:rtlviewpager:1.0.1' 
    compile 'com.github.apg-mobile:android-round-textview:v0.0.3' 
    compile 'com.github.chrisbanes:PhotoView:1.3.0' 
    compile 'com.google.code.gson:gson:2.8.0' 
    //WC 
    compile 'com.google.android.exoplayer:exoplayer:r2.4.3' 
    //TV & Radio 
    compile "com.android.support:cardview-v7:$supportlib_version" compile "com.android.support:appcompat-v7:$supportlib_version" compile "com.android.support:recyclerview-v7:$supportlib_version" compile "com.android.support:design:$supportlib_version" compile "com.android.support:support-v4:$supportlib_version" compile "com.android.support:support-core-utils:$supportlib_version" compile "com.android.support:support-media-compat:$supportlib_version" compile "com.google.android.gms:play-services-gcm:$gps_version" compile "com.google.android.gms:play-services-ads:$gps_version" compile "com.google.android.gms:play-services-maps:$gps_version" compile 'com.google.maps.android:android-maps-utils:0.5+' 
    compile files('libs/YouTubeAndroidPlayerApi.jar') 
} 

は私が間違ってどこでしょうか?私はAndroid Studio 2.3.3の最新バージョンを使用しています。

私を助けてもらえますか?このエラーが発生しましたか?私はあなたに美しい一日をお祈りします。

答えて

3

移動別の行でこの行:

//TV & Radio 
    compile "com.android.support:cardview-v7:$supportlib_version" compile "com.android.support:appcompat-v7:$supportlib_version" compile "com.android.support:recyclerview-v7:$supportlib_version" compile "com.android.support:design:$supportlib_version" compile "com.android.support:support-v4:$supportlib_version" compile "com.android.support:support-core-utils:$supportlib_version" compile "com.android.support:support-media-compat:$supportlib_version" compile "com.google.android.gms:play-services-gcm:$gps_version" compile "com.google.android.gms:play-services-ads:$gps_version" compile "com.google.android.gms:play-services-maps:$gps_version" compile 'com.google.maps.android:android-maps-utils:0.5+' 

あなたはこの方法でcompileを使用することはできません。 使用この:

compile "com.android.support:cardview-v7:$supportlib_version" 
compile "com.android.support:appcompat-v7:$supportlib_version" 
compile "com.android.support:recyclerview-v7:$supportlib_version" 
compile "com.android.support:design:$supportlib_version" 
compile "com.android.support:support-v4:$supportlib_version" 
compile "com.android.support:support-core-utils:$supportlib_version" 
compile "com.android.support:support-media-compat:$supportlib_version" 
compile "com.google.android.gms:play-services-gcm:$gps_version" 
compile "com.google.android.gms:play-services-ads:$gps_version" 
compile "com.google.android.gms:play-services-maps:$gps_version" 
compile 'com.google.maps.android:android-maps-utils:0.5+' 
+1

にバージョンの下に変更しようと、このまたは任意の答えはあなたの質問を解決した場合おかげで、それは –

+0

こんにちは@JohannMayerを働いてチェックをクリックすることで、それを受け入れることを検討してください-マーク。これは、あなたが解決策を見つけ出し、回答者とあなた自身の両方に評判を与えていることを広範なコミュニティに示します。これを行う義務はありません。 –

0

があなたのGradle-wrapper.properties

distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 
関連する問題