• 14-12-2016, 23:53:47
    #1
    Kimlik doğrulama veya yönetimden onay bekliyor.
    Merhaba arkadaşlar,
    Android studio ile hazır bir app güncellemek istiyorum yalnız sürekli hata alıyorum. Bu konuda yardımcı olabilirmisiniz?

    Hata kodu bu;
    Error46, 0) Could not get unknown property 'compile' for object of type org.gradle.api.internal.artifacts.dsl.dependencies .DefaultDependencyHandler.

    Kod ise bu:

    dependencies {
        compile fileTree(include: ['*.jar'], dir: 'libs')
        testCompile 'junit:junit:4.12'
    
        // library for user interface
    
        // library for api
    
        // library for loader image
    
        // others library
        compile
        'com.android.support:appcompat-v7:24.2.1' compile
        'com.android.support:cardview-v7:24.2.1' compile
        'com.android.support:recyclerview-v7:24.2.1' compile
        'com.android.support:design:24.2.1' compile
        'com.android.support:support-v4:24.2.1' compile 'com.balysv:material-ripple:1.0.2'
        compile 'com.squareup.retrofit2:retrofit:2.1.0'
        compile 'com.squareup.retrofit2:converter-gson:2.1.0'
        compile 'com.google.code.gson:gson:2.4'
        compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
        compile 'com.google.android.gms:play-services-maps:9.8.0'
        compile 'com.google.android.gms:play-services-gcm:9.8.0'
        compile 'com.google.android.gms:play-services-ads:9.8.0'
        compile 'com.google.android.gms:play-services-analytics:9.8.0'
        compile 'com.google.maps.android:android-maps-utils:0.4.3'
    }
  • 15-12-2016, 01:25:53
    #3
    Aşağıdaki şekilde dener misiniz?

    dependencies { 
        compile fileTree(include: ['*.jar'], dir: 'libs') 
        testCompile 'junit:junit:4.12' 
    
        // library for user interface 
    
        // library for api 
    
        // library for loader image 
    
        // others library 
        compile 'com.android.support:appcompat-v7:24.2.1'
        compile 'com.android.support:cardview-v7:24.2.1'
        compile 'com.android.support:recyclerview-v7:24.2.1'
        compile 'com.android.support:design:24.2.1'
        compile 'com.android.support:support-v4:24.2.1'
        compile 'com.balysv:material-ripple:1.0.2' 
        compile 'com.squareup.retrofit2:retrofit:2.1.0' 
        compile 'com.squareup.retrofit2:converter-gson:2.1.0' 
        compile 'com.google.code.gson:gson:2.4' 
        compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5' 
        compile 'com.google.android.gms:play-services-maps:9.8.0' 
        compile 'com.google.android.gms:play-services-gcm:9.8.0' 
        compile 'com.google.android.gms:play-services-ads:9.8.0' 
        compile 'com.google.android.gms:play-services-analytics:9.8.0' 
        compile 'com.google.maps.android:android-maps-utils:0.4.3' 
    }