Closed DeltaAtled closed 7 years ago
Have you tried version 0.9.26? Apparently that version is working fine with unity 5.3 above?? I read somewhere. I will see if can find link for you.
No I haven't, I can't seem to find it. Well if you can't find it, its ok, I'll just wait for the next update. They seem to be pretty fast updating this plugin. I had an issue on an old version last year and they ended up fixing the bug quickly with a new version of the plugin. Thanks anyway.
Got an update on this, I installed android SDK and JDK on my laptop and it ran well, it was able to build the project without a hitch. I'm not sure what I did wrong on my main computer but I'll update this if I find a solution on my main computer.
Well guys I found the problem. Looks like GoogleMobileAds plugin was the culprit the whole time. I removed it and and re-imported Google Play plugin again to ensure the files were good. My game was able to build properly without any errors. Hopefully someone finds this helpful if they run into a similar problem.
I still can't get the Google Play plugin to build in unity for Android. I get the failed to repackage error. You can see my errors and plugins folder and more info here http://stackoverflow.com/questions/34833792/unity-android-not-building-with-google-play-plug-in
From what I see in your pics, I noticed you are using 64 bit version of android sdk, I think(and I could be wrong here) Unity wants to work on 32 bit when it comes to plugins. Try installing 32 bit version of Android SDK and JDK. I am running basically all SDK's on 32 bit versions and I am running Unity 5 64-bit version.
Also try having your project build on only the Google Play Services plugin to rule out any other plugin that may interfere with it.
One more thing if you are using Android NDK you should get the white spaces out from the path location just to make sure.
I am good on Android NDK and I don't have any other plugins right now. I am actually testing with the minimum project and it is having the same problem.
My android SDK is just installed through Android Studios and there doesn't appear to be a choice for 32 bit or 64 bit. I also didn't see a choice to download either of them online. There is just a download for Android SDK.
Well from what I see in your directory of Android SDK suggests you have the adt-bundle-windows-x86_64 folder which is the 64 bit version.
Try using the standalone version. http://dl.google.com/android/android-sdk_r24.4.1-macosx.zip
I'm not on a Mac but the system requirements for android sdk says you also need Java Runtime Environment (JRE) 6(Not 100% sure but it might be for Android Studio)
This is as much help I can give you, I don't know any other ways to help you because I'm on Windows.
Hey DeltaAtled,
So I reinstalled all the android sdk using the link you gave and things are farther along. I didn't get the same error in Unity and I was able to export the project to AndroidStudio.
In Android Studio I get this error when executing...
/Volumes/Macintosh HD/noahbragg/StudioProjects/Project N/projectN/build/intermediates/manifests/full/debug/AndroidManifest.xml Error:(75, 28) No resource found that matches the given name (at 'value' with value '@integer/google_play_services_version'). Error:Execution failed for task ':projectN:processDebugResources'.
com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/Volumes/Macintosh HD/noahbragg/Library/Android/sdk/build-tools/23.0.2/aapt'' finished with non-zero exit value 1
It seems like it is still missing something with the google_play_services so I'm not sure if that is still a Android SDK issue or something with the Unity google-play plug-in.
Any ideas?
Thanks!
Looks like its Android Studio but I don't know I use Visual Studio 2015.
My guess is that your using that version that came with the 64 bit of Android SDK in Android Studio. I wonder if its because Android Studio is linked to that version of the SDK.
Try this to link the path of the 32 bit of Android SDK to Android Studio
http://stackoverflow.com/questions/16581752/android-studio-how-to-change-android-sdk-path
@NoahBragg and others - I think I found the problem with including the play-services-basement aar file. I hope to have an update today. Stay Tuned!
@DeltaAtled I actually switched the Android Studio SDK with the 32 bit one that you had me download so that shouldn't be the issue.
@claywilkinson Thanks! I will be looking out for it.
I am still having the same error in Android Studio with the new update to 0.9.30. When I export the Unity project into Android Studio I get this summary. Is this the issue with that bug or is it still a plug-in issue.
The tools should handle project locations in any directory. However, due to bugs, placing projects in directories containing spaces in the path, or characters like ", ' and &, have had issues. We're working to eliminate these bugs, but to save yourself headaches you may want to move your project to a location where this is not a problem. /Volumes/Macintosh HD/noahbragg/StudioProjects/Project N1
The following files were not copied into the new Gradle project; you should evaluate whether these are still needed in your project and if so manually move them:
From MainLibProj:
........ and there are many more.
Thanks I'll take a look right now. Which version of Android Studio are you using?
@claywilkinson Thanks. I have Android Studio Version 1.5.1
How could I manually move those files from the Unity project into the Android Studio project?
Hmm. I made a new project using Unity 5.3.1 and imported the SmokeTest sample and the PlayGames plugin. I set it up and ran it as an .apk directly with no issues.
Then to export it, I needed to work around a known issue in Unity about processing .aar files when exporting (there is no need to run the manifest merger, but they do, but they do not expand the .aar files first). To work around it I commented out the line in MainProj/AndroidManifest.xml:
<!--
comment out for exporting, then restore it once it is exported.
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
-->
Then after export, uncomment the line.
The gist listing the files generated is at https://gist.github.com/claywilkinson/b836ad70345e59adb26c
As you can see, it is a short list. The fact that your list has a .idea folder makes me think you are pulling in another project, or there is one existing when trying to import?
How are you importing into Android Studio? (That is my next step).
To import to Android Studio I do File -> new -> Import Project... and then select the Project Name folder from the files that Unity created when exporting the Android project. And thats it.
OK I did that, and then made a new run target for the "Smoke30" module. When I ran it I got a lot of classes not found. This is because the .aar files are not being used. At this point, you have 2 options:
To convert the project, I added a boilerplate build.gradle to the root of my project. I created it by copying it from a new Android Studio project:
// 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.5.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Then added a settings.gradle file to the root specifying the two sub-modules:
include ':MainLibProj', ':Smoke30'
For the MainLibProj subproject, I copied the blank "Android Library" build.gradle:
apply plugin: 'com.android.library'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
minSdkVersion 16
targetSdkVersion 23
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:23.1.1'
}
Then moved the AndroidManifest.xml to src/main/AndroidManifest.xml, the expected location for Gradle projects.
For the application, "Smoke30" in my case, I started with the empty application build.gradle from the "app" directory:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "google.com.empty15"
minSdkVersion 19
targetSdkVersion 23
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:23.1.1'
}
Then made some project specific changes:
compile 'com.google.android.gms:play-services-base:8.4.0'
compile 'com.google.android.gms:play-services-basement:8.4.0'
compile 'com.google.android.gms:play-services-drive:8.4.0'
compile 'com.google.android.gms:play-services-games:8.4.0'
compile 'com.google.android.gms:play-services-nearby:8.4.0'
compile 'com.google.android.gms:play-services-plus:8.4.0'
compile 'com.android.support:support-v4:23.1.1'
compile project(':MainLibProj')
Then import the top level build.gradle in Android Studio
@claywilkinson Sorry I am now just finally able to go through this.
The first 3 files that you wanted me to change already had what you wanted me to change them to so I kept them as is.
For the fourth step " moving AndroidManifest.xml to src/main/AndroidManifest.xml", Where do I get the AndroidManifest.xml from and I am moving it to MainLibProj/src/main correct?
For the fifth step where you say "For the application, "Smoke30" in my case" does that mean you want me to change things under myRootfolder/myProjectName where there are build, src, and lib folders as well as build.gradle and myProjectName.iml? and then the rest of the changes are under this as well correct?
Thanks for the help!
Unity generated a merged AndroidManifest.xml which should be in the root of the generated project. That's the one you want to move to src/main
I think I understand your second question, yes.
When I was done, this is what my project looked like:
./Android.iml
./build.gradle
./gradle
./gradle/wrapper
./gradle/wrapper/gradle-wrapper.jar
./gradle/wrapper/gradle-wrapper.properties
./gradlew
./gradlew.bat
./local.properties
./MainLibProj
./MainLibProj/build.gradle
./MainLibProj/libs
./MainLibProj/libs/play-games-plugin-support.jar
./MainLibProj/MainLibProj.iml
./MainLibProj/project.properties
./MainLibProj/src
./MainLibProj/src/main
./MainLibProj/src/main/AndroidManifest.xml
./settings.gradle
./Smoke30
./Smoke30/build.gradle
./Smoke30/libs
./Smoke30/libs/play-services-base-8.4.0.aar
./Smoke30/libs/play-services-basement-8.4.0.aar
./Smoke30/libs/play-services-drive-8.4.0.aar
./Smoke30/libs/play-services-games-8.4.0.aar
./Smoke30/libs/play-services-nearby-8.4.0.aar
./Smoke30/libs/play-services-plus-8.4.0.aar
./Smoke30/libs/support-annotations-23.1.1.jar
./Smoke30/libs/support-v4-23.1.1.aar
./Smoke30/libs/unity-classes.jar
./Smoke30/project.properties
./Smoke30/Smoke30.iml
./Smoke30/src
./Smoke30/src/main
./Smoke30/src/main/AndroidManifest.xml
./Smoke30/src/main/assets
./Smoke30/src/main/assets/bin
./Smoke30/src/main/assets/bin/Data
./Smoke30/src/main/assets/bin/Data/globalgamemanagers
./Smoke30/src/main/assets/bin/Data/globalgamemanagers.assets
./Smoke30/src/main/assets/bin/Data/level0
./Smoke30/src/main/assets/bin/Data/Managed
./Smoke30/src/main/assets/bin/Data/Managed/Assembly-CSharp.dll
./Smoke30/src/main/assets/bin/Data/Managed/Mono.Security.dll
./Smoke30/src/main/assets/bin/Data/Managed/mscorlib.dll
./Smoke30/src/main/assets/bin/Data/Managed/System.Core.dll
./Smoke30/src/main/assets/bin/Data/Managed/System.dll
./Smoke30/src/main/assets/bin/Data/Managed/UnityEngine.dll
./Smoke30/src/main/assets/bin/Data/Managed/UnityEngine.dll.mdb
./Smoke30/src/main/assets/bin/Data/Managed/UnityEngine.Networking.dll
./Smoke30/src/main/assets/bin/Data/Managed/UnityEngine.UI.dll
./Smoke30/src/main/assets/bin/Data/Resources
./Smoke30/src/main/assets/bin/Data/Resources/unity_builtin_extra
./Smoke30/src/main/assets/bin/Data/settings.xml
./Smoke30/src/main/assets/bin/Data/sharedassets0.assets
./Smoke30/src/main/assets/bin/Data/splash.png
./Smoke30/src/main/assets/bin/Data/unity default resources
./Smoke30/src/main/java
./Smoke30/src/main/java/com
./Smoke30/src/main/java/com/google
./Smoke30/src/main/java/com/google/devrel
./Smoke30/src/main/java/com/google/devrel/unity
./Smoke30/src/main/java/com/google/devrel/unity/smoketest
./Smoke30/src/main/java/com/google/devrel/unity/smoketest/UnityPlayerActivity.java
./Smoke30/src/main/java/com/google/devrel/unity/smoketest/UnityPlayerNativeActivity.java
./Smoke30/src/main/java/com/google/devrel/unity/smoketest/UnityPlayerProxyActivity.java
./Smoke30/src/main/jniLibs
./Smoke30/src/main/jniLibs/armeabi-v7a
./Smoke30/src/main/jniLibs/armeabi-v7a/libgpg.so
./Smoke30/src/main/jniLibs/armeabi-v7a/libmain.so
./Smoke30/src/main/jniLibs/armeabi-v7a/libmono.so
./Smoke30/src/main/jniLibs/armeabi-v7a/libunity.so
./Smoke30/src/main/jniLibs/x86
./Smoke30/src/main/jniLibs/x86/libgpg.so
./Smoke30/src/main/jniLibs/x86/libmain.so
./Smoke30/src/main/jniLibs/x86/libmono.so
./Smoke30/src/main/jniLibs/x86/libunity.so
./Smoke30/src/main/res
./Smoke30/src/main/res/drawable
./Smoke30/src/main/res/drawable/app_icon.png
./Smoke30/src/main/res/drawable-xhdpi
./Smoke30/src/main/res/drawable-xhdpi/app_banner.png
./Smoke30/src/main/res/values
./Smoke30/src/main/res/values/strings.xml
./Smoke30/src/main/res/values-v14
./Smoke30/src/main/res/values-v21
./Smoke30/src/main/res/values-v21/styles.xml
@claywilkinson I don't seem to have an AndroidManifest.xml in the root of my Android project.
OK to close this one?
Do you mean close the issue?
Can i also need version 0.9.26. Can anyone provide link?
I downloaded all the files for Android 6.0 in the Android SDK Manager but no luck.
I also downloaded android sdk tools rev 24.4.2, android sdk platform-tools 23.1, android sdk build-tools 23.0.2, android 6.0 sdk platform rev 2 along with all the System Images. I also downloaded files under Extras folder which are android support repository rev 25, android support library rev 23.1.1 but I have no luck. I have Unity 5.3.1f1 Personal version and it will not build the game. I tried the other solutions of others that ran to the same problem and it does not work for me.
I pasted 2 Error logs here below, hopefully someone can help me.
-ERROR LOG 1
CommandInvokationFailure: Failed to re-package resources. See the Console for details. I:\Android-SDK-Windows\build-tools\23.0.2\aapt.exe package --auto-add-overlay -v -f -m -J gen -M AndroidManifest.xml -S "res" -I "I:/Android-SDK-Windows\platforms\android-23\android.jar" -F bin/resources.ap_ --extra-packages android.support.v7.appcompat:com.google.unity:com.google.example.games.mainlibproj:com.google.android.gms.base:com.google.android.gms:com.google.android.gms.drive:com.google.android.gms.games:com.google.android.gms.nearby:com.google.android.gms.plus:android.support.v4 -S "J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res" -S "J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\play-services-base-8.4.0\res" -S "J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\play-services-basement-8.4.0\res" -S "J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\play-services-drive-8.4.0\res" -S "J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\play-services-games-8.4.0\res" -S "J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\play-services-nearby-8.4.0\res" -S "J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\play-services-plus-8.4.0\res" -S "J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\support-v4-23.1.1\res"
stderr[ J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_alert_dialog_button_bar_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:layoutDirection from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_alert_dialog_button_bar_material.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/abc_alert_dialog_button_bar_material for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_alert_dialog_material.xml:48: note: removing attribute http://schemas.android.com/apk/res/android:textAlignment from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_alert_dialog_material.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/abc_alert_dialog_material for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_dialog_title_material.xml:29: note: removing attribute http://schemas.android.com/apk/res/android:textAlignment from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_dialog_title_material.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/abc_dialog_title_material for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_screen_toolbar.xml:27: note: removing attribute http://schemas.android.com/apk/res/android:touchscreenBlocksFocus from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_screen_toolbar.xml: note: using v21 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/abc_screen_toolbar for configuration v21.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_search_view.xml:47: note: removing attribute http://schemas.android.com/apk/res/android:layoutDirection from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_search_view.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/abc_search_view for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media.xml:42: note: removing attribute http://schemas.android.com/apk/res/android:layoutDirection from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media.xml:34: note: removing attribute http://schemas.android.com/apk/res/android:layout_marginStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media.xml:34: note: removing attribute http://schemas.android.com/apk/res/android:layout_toStartOf from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/notification_template_big_media for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media_narrow.xml:60: note: removing attribute http://schemas.android.com/apk/res/android:layout_toEndOf from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media_narrow.xml:46: note: removing attribute http://schemas.android.com/apk/res/android:layout_toEndOf from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media_narrow.xml:46: note: removing attribute http://schemas.android.com/apk/res/android:layoutDirection from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media_narrow.xml:38: note: removing attribute http://schemas.android.com/apk/res/android:layout_marginStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media_narrow.xml:38: note: removing attribute http://schemas.android.com/apk/res/android:layout_toStartOf from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media_narrow.xml:30: note: removing attribute http://schemas.android.com/apk/res/android:layout_alignParentEnd from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media_narrow.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/notification_template_big_media_narrow for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_lines.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingEnd from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_lines.xml:77: note: removing attribute http://schemas.android.com/apk/res/android:layout_marginStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_lines.xml:96: note: removing attribute http://schemas.android.com/apk/res/android:paddingStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_lines.xml:64: note: removing attribute http://schemas.android.com/apk/res/android:layout_marginStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_lines.xml:27: note: removing attribute http://schemas.android.com/apk/res/android:layout_marginStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_lines.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/notification_template_lines for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_media.xml:43: note: removing attribute http://schemas.android.com/apk/res/android:layout_marginEnd from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_media.xml:33: note: removing attribute http://schemas.android.com/apk/res/android:layoutDirection from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_media.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/notification_template_media for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_part_chronometer.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_part_chronometer.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/notification_template_part_chronometer for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_part_time.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_part_time.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/notification_template_part_time for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_multichoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_multichoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingEnd from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_multichoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:drawableStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_multichoice_material.xml: note: using v13 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/select_dialog_multichoice_material for configuration v13.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_singlechoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_singlechoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingEnd from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_singlechoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:drawableStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_singlechoice_material.xml: note: using v13 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/select_dialog_singlechoice_material for configuration v13.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\drawable\abc_textfield_search_material.xml:19: note: removing attribute http://schemas.android.com/apk/res/android:state_activated from -
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\drawable\abc_textfield_search_material.xml: note: using v11 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:drawable/abc_textfield_search_material for configuration v11.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_multichoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_multichoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingEnd from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_multichoice_material.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/select_dialog_multichoice_material for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_singlechoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_singlechoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingEnd from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_singlechoice_material.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/select_dialog_singlechoice_material for configuration v17.
AndroidManifest.xml:16: error: Error: No resource found that matches the given name (at 'theme' with value '@style/Theme.IAPTheme').
] stdout[ Configurations: (default)
Files: AndroidManifest.xml Src: () AndroidManifest.xml
Resource Dirs: Including resources from package: I:\Android-SDK-Windows\platforms\android-23\android.jar applyFileOverlay for drawable trying overlaySet Key=ic_plusone_medium_off_client.png trying overlaySet Key=ic_plusone_small_off_client.png trying overlaySet Key=ic_plusone_standard_off_client.png trying overlaySet Key=ic_plusone_tall_off_client.png trying overlaySet Key=common_full_open_on_phone.png trying overlaySet Key=common_google_signin_btn_icon_dark.xml trying overlaySet Key=common_google_signin_btn_icon_dark_disabled.9.png trying overlaySet Key=common_google_signin_btn_icon_dark_focused.9.png trying overlaySet Key=common_google_signin_btn_icon_dark_normal.9.png trying overlaySet Key=common_google_signin_btn_icon_dark_pressed.9.png trying overlaySet Key=common_google_signin_btn_icon_light.xml trying overlaySet Key=common_google_signin_btn_icon_light_disabled.9.png trying overlaySet Key=common_google_signin_btn_icon_light_focused.9.png trying overlaySet Key=common_google_signin_btn_icon_light_normal.9.png trying overlaySet Key=common_google_signin_btn_icon_light_pressed.9.png trying overlaySet Key=common_google_signin_btn_text_dark.xml trying overlaySet Key=common_google_signin_btn_text_dark_disabled.9.png trying overlaySet Key=common_google_signin_btn_text_dark_focused.9.png trying overlaySet Key=common_google_signin_btn_text_dark_normal.9.png trying overlaySet Key=common_google_signin_btn_text_dark_pressed.9.png trying overlaySet Key=c
-ERROR LOG 2
Error building Player: CommandInvokationFailure: Failed to re-package resources. See the Console for details. I:\Android-SDK-Windows\build-tools\23.0.2\aapt.exe package --auto-add-overlay -v -f -m -J gen -M AndroidManifest.xml -S "res" -I "I:/Android-SDK-Windows\platforms\android-23\android.jar" -F bin/resources.ap_ --extra-packages android.support.v7.appcompat:com.google.unity:com.google.example.games.mainlibproj:com.google.android.gms.base:com.google.android.gms:com.google.android.gms.drive:com.google.android.gms.games:com.google.android.gms.nearby:com.google.android.gms.plus:android.support.v4 -S "J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res" -S "J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\play-services-base-8.4.0\res" -S "J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\play-services-basement-8.4.0\res" -S "J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\play-services-drive-8.4.0\res" -S "J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\play-services-games-8.4.0\res" -S "J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\play-services-nearby-8.4.0\res" -S "J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\play-services-plus-8.4.0\res" -S "J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\support-v4-23.1.1\res"
stderr[ J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_alert_dialog_button_bar_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:layoutDirection from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_alert_dialog_button_bar_material.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/abc_alert_dialog_button_bar_material for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_alert_dialog_material.xml:48: note: removing attribute http://schemas.android.com/apk/res/android:textAlignment from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_alert_dialog_material.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/abc_alert_dialog_material for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_dialog_title_material.xml:29: note: removing attribute http://schemas.android.com/apk/res/android:textAlignment from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_dialog_title_material.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/abc_dialog_title_material for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_screen_toolbar.xml:27: note: removing attribute http://schemas.android.com/apk/res/android:touchscreenBlocksFocus from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_screen_toolbar.xml: note: using v21 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/abc_screen_toolbar for configuration v21.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_search_view.xml:47: note: removing attribute http://schemas.android.com/apk/res/android:layoutDirection from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\abc_search_view.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/abc_search_view for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media.xml:42: note: removing attribute http://schemas.android.com/apk/res/android:layoutDirection from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media.xml:34: note: removing attribute http://schemas.android.com/apk/res/android:layout_marginStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media.xml:34: note: removing attribute http://schemas.android.com/apk/res/android:layout_toStartOf from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/notification_template_big_media for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media_narrow.xml:60: note: removing attribute http://schemas.android.com/apk/res/android:layout_toEndOf from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media_narrow.xml:46: note: removing attribute http://schemas.android.com/apk/res/android:layout_toEndOf from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media_narrow.xml:46: note: removing attribute http://schemas.android.com/apk/res/android:layoutDirection from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media_narrow.xml:38: note: removing attribute http://schemas.android.com/apk/res/android:layout_marginStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media_narrow.xml:38: note: removing attribute http://schemas.android.com/apk/res/android:layout_toStartOf from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media_narrow.xml:30: note: removing attribute http://schemas.android.com/apk/res/android:layout_alignParentEnd from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_big_media_narrow.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/notification_template_big_media_narrow for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_lines.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingEnd from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_lines.xml:77: note: removing attribute http://schemas.android.com/apk/res/android:layout_marginStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_lines.xml:96: note: removing attribute http://schemas.android.com/apk/res/android:paddingStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_lines.xml:64: note: removing attribute http://schemas.android.com/apk/res/android:layout_marginStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_lines.xml:27: note: removing attribute http://schemas.android.com/apk/res/android:layout_marginStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_lines.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/notification_template_lines for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_media.xml:43: note: removing attribute http://schemas.android.com/apk/res/android:layout_marginEnd from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_media.xml:33: note: removing attribute http://schemas.android.com/apk/res/android:layoutDirection from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_media.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/notification_template_media for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_part_chronometer.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_part_chronometer.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/notification_template_part_chronometer for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_part_time.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\notification_template_part_time.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/notification_template_part_time for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_multichoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_multichoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingEnd from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_multichoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:drawableStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_multichoice_material.xml: note: using v13 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/select_dialog_multichoice_material for configuration v13.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_singlechoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_singlechoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingEnd from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_singlechoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:drawableStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_singlechoice_material.xml: note: using v13 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/select_dialog_singlechoice_material for configuration v13.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\drawable\abc_textfield_search_material.xml:19: note: removing attribute http://schemas.android.com/apk/res/android:state_activated from -
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\drawable\abc_textfield_search_material.xml: note: using v11 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:drawable/abc_textfield_search_material for configuration v11.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_multichoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_multichoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingEnd from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_multichoice_material.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/select_dialog_multichoice_material for configuration v17.
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_singlechoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingStart from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_singlechoice_material.xml:18: note: removing attribute http://schemas.android.com/apk/res/android:paddingEnd from
J:\VA_Work\VA_Projects_5.0\MT2_Project\Temp\StagingArea\android-libraries\appcompat-v7-23.1.1\res\layout\select_dialog_singlechoice_material.xml: note: using v17 attributes; synthesizing resource com.VisualArtsStudio.MooninightToss2:layout/select_dialog_singlechoice_material for configuration v17.
AndroidManifest.xml:16: error: Error: No resource found that matches the given name (at 'theme' with value '@style/Theme.IAPTheme').
] stdout[ Configurations: (default)
Files: AndroidManifest.xml Src: () AndroidManifest.xml
Resource Dirs: Including resources from package: I:\Android-SDK-Windows\platforms\android-23\android.jar applyFileOverlay for drawable trying overlaySet Key=ic_plusone_medium_off_client.png trying overlaySet Key=ic_plusone_small_off_client.png trying overlaySet Key=ic_plusone_standard_off_client.png trying overlaySet Key=ic_plusone_tall_off_client.png trying overlaySet Key=common_full_open_on_phone.png trying overlaySet Key=common_google_signin_btn_icon_dark.xml trying overlaySet Key=common_google_signin_btn_icon_dark_disabled.9.png trying overlaySet Key=common_google_signin_btn_icon_dark_focused.9.png trying overlaySet Key=common_google_signin_btn_icon_dark_normal.9.png trying overlaySet Key=common_google_signin_btn_icon_dark_pressed.9.png trying overlaySet Key=common_google_signin_btn_icon_light.xml trying overlaySet Key=common_google_signin_btn_icon_light_disabled.9.png trying overlaySet Key=common_google_signin_btn_icon_light_focused.9.png trying overlaySet Key=common_google_signin_btn_icon_light_normal.9.png trying overlaySet Key=common_google_signin_btn_icon_light_pressed.9.png trying overlaySet Key=common_google_signin_btn_text_dark.xml trying overlaySet Key=common_google_signin_btn_text_dark_disabled.9.png trying overlaySet Key=common_google_signin_btn_text_dark_focused.9.png trying overlaySet Key=common_google_signin_btn_text_dark_normal.9.png trying overlaySet Key=common_google_signin_btn_text_dark_pressed.9.png