我是这个论坛的新手。我的应用程序有问题。 我开发了一个应用程序,在第一个视图中有一个切换选项卡,在一个选项卡中它有一个谷歌地图,通过json文件加载地理点,在另一个选项卡中有一个这个json文件的列表。 我使用了apache httpclient库和google play service 8.4.0 我已经添加到我的代码google-service.json。 这是我的gradle文件:
Activity
此应用程序适用于Android版本4和5,但当我尝试在API 23的模拟器上运行时,我收到无法检索json数据的错误:
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
repositories {
maven { url 'https://maven.fabric.io/public' }
}
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "it.roadzapp.android"
minSdkVersion 18
targetSdkVersion 23
versionCode 1
versionName "1.0"
// Enabling multidex support.
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dexOptions {
incremental true
javaMaxHeapSize "4g"
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.android.support:support-v4:23.4.0'
compile 'com.google.android.gms:play-services:8.4.0'
//compile 'com.google.android.gms:play-services:9.2.0'
compile files('libs/apache-httpcomponents-httpclient.jar')
compile 'com.google.maps.android:android-maps-utils:0.4.3'
compile 'com.twotoasters.clusterkraf:library:1.0.2'
compile 'de.hdodenhof:circleimageview:2.0.0'
compile 'com.android.support:multidex:1.0.0'
compile 'com.android.support:cardview-v7:24.0.0-beta1'
compile('com.crashlytics.sdk.android:crashlytics:2.6.0@aar') {
transitive = true;
}
compile('com.crashlytics.sdk.android:crashlytics-ndk:1.1.3@aar') {
transitive = true;
}
compile 'com.github.paolorotolo:appintro:4.0.0'
}
android {
useLibrary 'org.apache.http.legacy'
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
}
// ...
}
crashlytics {
enableNdk true
androidNdkOut 'src/main/obj'
androidNdkLibsOut 'src/main/libs'
}
并且模拟器上的地图片段会显示一条消息,以便更新您的Google Play服务"
这不正常。 API从17到22的其他设备上的应用程序运行正常。 有什么帮助吗? 感谢
这是我的清单文件:
Error Parsing Data java.lang.NullPointerException: Attempt to invoke virtual method 'int java.lang.String.length()' on a null object reference