diff --git a/Android.minifest b/Android.minifest new file mode 100644 index 00000000..cd72d762 --- /dev/null +++ b/Android.minifest @@ -0,0 +1,33 @@ +buildscript { + + repositories { + + jcenter() + + google() + + } + + dependencies { + + classpath 'com.android.tools.build:gradle:::ANDROID_GRADLE_PLUGIN::' + + } + +} + +apply plugin: 'com.android.library' + +android { + + compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION) + + buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION + +} + +dependencies { + + api project(':deps:extension-api') + +}