1

I have imported the sample for "Google Plus " from extras and I am facing the issue while building the project.

Could you please assist me to resolve this ?

enter image description here

iappmaker
  • 2,945
  • 9
  • 35
  • 76
  • Add this to your manifest if not already added: `` and then restart your `Studio`. It might just be a bug in `Studio`. Also, just to confirm the problem is with `Studio`, try building your application from the command prompt or terminal.. (gradle build) – Henry Nov 07 '15 at 12:05

1 Answers1

0
android:configChanges="screenSize|smallestScreenSize"

These attributes were introduced in API level 13, so make sure your minSdkVersion is equal to 13 or higher. The same applies to your compileSdkVersion.

See also: Error string types not allowed at android:configChanges in manifest file

Community
  • 1
  • 1
Antict
  • 597
  • 5
  • 22