我正在尝试将Google Signin集成到我的Android应用中。当我包含Google Services Dependencies时,我面临着构建apk的问题。下面是我的gradle文件和错误日志。谷歌服务lib也提示我使用gradle-wrapper 2.10而不是2.8
PROJECT LEVEL GRADLE FILE:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'com.google.gms:google-services:2.0.0-alpha5'
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
}
}
APP LEVEL GRADLE FILE:
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.jaldirecharge"
minSdkVersion 9
targetSdkVersion 23
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
}
}
useLibrary 'org.apache.http.legacy'
}
dependencies {
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:support-v4:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.mcxiaoke.volley:library:1.0.6'
compile 'com.google.code.gson:gson:2.4'
compile 'com.google.android.gms:play-services-auth:8.3.0'
compile files('libs/gcm.jar')
compile files('libs/libGoogleAnalyticsServices.jar')
compile files('libs/socialauth-4.3.jar')
compile 'com.facebook.android:facebook-android-sdk:4.9.0'
compile files('libs/socialauth-android-3.0.jar')
compile files('libs/universal-image-loader-1.8.3.jar')
}
错误日志:
Information:Gradle tasks [:app:assembleDebug]
:app:preBuild UP-TO-DATE
:app:preDebugBuild UP-TO-DATE
:app:checkDebugManifest
:app:preReleaseBuild UP-TO-DATE
:app:prepareComAndroidSupportAppcompatV72311Library UP-TO-DATE
:app:prepareComAndroidSupportCardviewV72311Library UP-TO-DATE
:app:prepareComAndroidSupportDesign2311Library UP-TO-DATE
:app:prepareComAndroidSupportMultidex101Library UP-TO-DATE
:app:prepareComAndroidSupportRecyclerviewV72311Library UP-TO-DATE
:app:prepareComAndroidSupportSupportV42311Library UP-TO-DATE
:app:prepareComFacebookAndroidFacebookAndroidSdk490Library UP-TO-DATE
:app:prepareComGoogleAndroidGmsPlayServicesAuth830Library UP-TO-DATE
:app:prepareComGoogleAndroidGmsPlayServicesBase830Library UP-TO-DATE
:app:prepareComGoogleAndroidGmsPlayServicesBasement830Library UP-TO-DATE
:app:prepareComGoogleAndroidGmsPlayServicesMeasurement830Library UP-TO-DATE
:app:prepareDebugDependencies
:app:compileDebugAidl UP-TO-DATE
:app:compileDebugRenderscript UP-TO-DATE
:app:generateDebugBuildConfig UP-TO-DATE
:app:generateDebugAssets UP-TO-DATE
:app:mergeDebugAssets UP-TO-DATE
:app:generateDebugResValues UP-TO-DATE
:app:processDebugGoogleServices
:app:generateDebugResources
:app:mergeDebugResources
AAPT错误(Facade for 1282826090):No Delegate set:lost message:libpng error:not a PNG file AAPT错误(Facade for 1543523483):No Delegate set:lost message:libpng error:not a PNG file AAPT:libpng错误:不是PNG文件 AAPT:libpng错误:不是PNG文件 :app:mergeDebugResources FAILED 错误:任务':app:mergeDebugResources'执行失败。
Crunching Cruncher loader.png失败,请参阅日志 信息:建筑失败 信息:总时间:9.017秒 信息:1错误 信息:0警告 信息:请参阅控制台中的完整输出
答案 0 :(得分:7)
您可以在build.gradle中禁用它:
function myFunction() {
var z = 0;
var count = document.getElementById("tatalrecord");
var cn = (count.value) ? parseInt(count.value) : 0;
alert(cn);
for (var i = 1; i <= cn; ++i)
{
var x = document.getElementById("rec_qty"+i);
var y = document.getElementById("porate"+i);
z = parseInt(x.value) * parseInt(y.value);
}
}
答案 1 :(得分:6)
Shahar给出了正确的答案,只有我想加入的是 -
我的项目中有100多张图像并且无法检查每张图像,所以我所做的就是使用工具一次转换所有PNG图像。我是MAC用户所以我使用预览应用程序。我发现其中一个图像保存为PNG但不保存为png文件。
答案 2 :(得分:1)
资源文件夹中的png文件存在问题。 你如何以及在哪里获得PNG文件? 它可能已被破坏。
在png上尝试以下问题:
在编辑器中将其保存为png。无需重命名文件名。 将.png图像复制粘贴到可绘制文件夹中。
答案 3 :(得分:0)
只需移动项目文件夹,因为它的名称太长,并使用android studio
再次打开它答案 4 :(得分:0)
将项目文件夹移动到我的工作区并再次打开它对我有用。