Android NDK onAndroid Studio 2

Can I use the NDK with the classpath plugin 'com.android.tools.build: gradle: 2.0.0-beta5' gradle? Is it enabled or should I use an experimental plugin? And if so, experimental support for Instant Run and SVG images?

+4
source share
1 answer
  • Can I use the NDK with the classpath plugin 'com.android.tools.build: gradle: 2.0.0-beta5' gradle?

In local.propertiesindicate your ndk.dirnext to your sdk.dir:

sdk.dir=/../android-sdk
ndk.dir=/../android-ndk
  1. ? . . . : : (1, 0) id 'com.android.application'

classpath 'com.android.tools.build:gradle:2.0.0'

  1. , Instant Run SVG ?

2.0.0 insta-run, svg-. SVG , compile 'com.android.appcompat-v7:23.3.0'

0

Source: https://habr.com/ru/post/1629566/


All Articles