I have some directories I need to be included in the root of the apk (no I cannot put them in the assets or res/raw folders). How can I include them in the apk build?
My build.gradle:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
}
}
apply plugin: 'android'
android {
compileSdkVersion 'android-23'
buildToolsVersion '24'
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
buildTypes {
release {
minifyEnabled false
proguardFile getDefaultProguardFile('proguard-android.txt')
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
}
}