Error: Gradle DSL method not found: compile()

前端 未结 2 999
情书的邮戳
情书的邮戳 2020-12-12 01:19

enter image description here

Hello, we\'ve created an android app for our site, but now you want to turn it into an APK, but I\'ve encountered the following error an

相关标签:
2条回答
  • 2020-12-12 01:31

    Move this line in different lines:

        //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+'
    

    You can't use compile in this way. Use this:

    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+'
    
    0 讨论(0)
  • 2020-12-12 01:39

    Try to change below version in your Gradle-wrapper.properties or you need to update Gradle-wrapper.properties

    distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
    
    0 讨论(0)
提交回复
热议问题