由于谷歌播放服务导致错误启动活动?

时间:2018-04-13 14:50:31

标签: android crash google-play-services

我在android studio中开发了一个项目,但过了一会儿就没有执行该应用程序,它会立即打开和关闭。

我的google play服务库出了问题,无法访问zzbfm播放服务地图 我已经查看了gradle,清单但我找不到错误。

新:我注意到应用程序正在运行,我必须按android studio 停止。

这是我的gradle app

apply plugin: 'com.android.application'

 android {
compileSdkVersion 26
//buildToolsVersion '25.0.2'
buildToolsVersion '26.0.2'
useLibrary 'org.apache.http.legacy'
defaultConfig {
    applicationId "com.cspm.ventas6.cspm"
    minSdkVersion 22
    targetSdkVersion 26
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner 
"android.support.test.runner.AndroidJUnitRunner"
    multiDexEnabled true
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 
   'proguard-rules.pro'
    }
 }
}
 repositories {
   maven { url "https://jitpack.io" }
  maven { url "https://maven.google.com" }
   google()
 }
  dependencies {
  compile fileTree(include: ['*.jar'], dir: 'libs')
  androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', 
 {
    exclude group: 'com.android.support', module: 'support-annotations'
})

compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support:design:26.1.0'
compile 'com.google.code.gson:gson:2.8.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:cardview-v7:26.1.0'
compile 'com.squareup.okhttp:okhttp:2.4.0'
compile 'com.android.volley:volley:1.0.0'
compile 'com.android.support:support-v4:26.1.0'
compile 'com.google.android.gms:play-services:11.0.1'
compile 'com.github.safetysystemtechnology:location-tracker-background:v1.2'
compile 'com.github.PhilJay:MPAndroidChart:v2.2.4'
testCompile 'junit:junit:4.12'
 }

0 个答案:

没有答案