To use the latest NDK support in Android Studio you have to use Gradle 2.5. 
http://tools.android.com/tech-docs/new-build-system/gradle-experimental

Which introduces a new syntax. eg. buildToolsVersion "23.0.1" becomes 
buildToolsVersion = "23.0.1" 

For resConfigs pre Gradle 2.5 you write it:


 defaultConfig { ... 
       resConfigs "en", "fr" }

But with 2.5, I could not find a way to write a comma delimited strings.

Even when I tried with one string   

defaultConfig.with { ...
       resConfigs = "fr" }


I got this error *Error:No such property: resConfigs for class: 
com.android.build.gradle.managed.ProductFlavor*

I need this as AppCompat has translations for many languages which I am not 
supporting ATM.

-- 
You received this message because you are subscribed to the Google Groups 
"adt-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adt-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to