我正在处理问题.这里是gradle消息中的问题,同时在gradle中进行同步我们的Android Studio version is 2.1.2.
错误:配置项目':LetMeCall_Store'时出现问题.找不到support-v4.jar(com.android.support:support-v4:24.1.1).在以下位置搜索:https: //jcenter.bintray.com/com/android/support/support-v4/24.1.1/support-v4-24.1.1.jar
下面是gradle文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
defaultConfig {
applicationId "com.app.letmecall.store"
minSdkVersion 15
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.1.1'
compile 'com.android.support:design:24.0.0-beta1'
compile 'com.android.support:support-v4:24.0.0-beta1'
compile 'com.android.support:recyclerview-v7:24.1.1'
compile 'com.android.support:cardview-v7:24.0.0-beta1'
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.apache.http.client:4.1.2'
compile 'com.loopj.android:android-async-http:1.4.6'
compile 'com.daimajia.androidanimations:library:1.0.3@aar'
compile "com.google.android.gms:play-services:8.3.0"
compile 'com.mcxiaoke.volley:library-aar:1.0.0' …Run Code Online (Sandbox Code Playgroud) android android-studio android-gradle-plugin gradle-plugin android-studio-2.1
我们正在使用android开发推送通知,我们完成了使用三个手机向移动设备发送推送通知移动设备.现在我们需要从解析中获取用户列表.实际上我们已经尝试过,但我们只获得当前用户.
String i=ParseInstallation.getCurrentInstallation().getString("user");
上面的行只检索当前用户,但我们需要Parse安装中所有用户的列表.

我们需要这样的名称列表sam,sony,tab按照屏幕截图.