diff --git a/dependencies/android/AndroidManifest.xml b/dependencies/android/AndroidManifest.xml index b6e62ad..74b7379 100644 --- a/dependencies/android/AndroidManifest.xml +++ b/dependencies/android/AndroidManifest.xml @@ -1,3 +1,3 @@ - + \ No newline at end of file diff --git a/dependencies/android/build.gradle b/dependencies/android/build.gradle new file mode 100644 index 0000000..98c90cc --- /dev/null +++ b/dependencies/android/build.gradle @@ -0,0 +1,17 @@ +apply plugin: 'com.android.library' + +android { + namespace "org.haxe.extension.esorientation" + sourceSets { + main { + manifest.srcFile 'AndroidManifest.xml' + java.srcDirs = ['src'] + } + } + compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION) + buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION +} + +dependencies { + api project(':deps:extension-api') +}