How do I write contents in build.gradle in Android.mk file? -
i have build.gradle file i'm trying integrate. i've few statements i'm not able write android.mk file.
android { compilesdkversion 23 buildtoolsversion "23.0.1" defaultconfig { applicationid "com.sec.android.myapp" minsdkversion 23 targetsdkversion 23 versioncode 1 versionname "1.0" testinstrumentationrunner "android.support.test.runner.androidjunitrunner" } buildtypes { release { minifyenabled false proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile filetree(dir: 'libs', include: ['*.jar']) androidtestcompile 'com.android.support.test:runner:0.4.1' androidtestcompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.1' }
i don't know how write following build configs build.gradle android.mk
testinstrumentationrunner "android.support.test.runner.androidjunitrunner" androidtestcompile 'com.android.support.test:runner:0.4.1' androidtestcompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.1'
can me this? if i'm using statements in android.mk, need include libraries under /libs ?
Comments
Post a Comment