Add /customtabs for Custom Tabs support library
This adds the extras and keys that will be used for
customizing the UI and functionality of the custom tab.
It also contains two aidls that will be used for interfacing
with the service that the custom tab provider will implement.
For chrome implementation documentation see:
https://developer.chrome.com/multidevice/android/customtabs
Change-Id: I712cd82c94ceab820737f6e38e4783fabef51791
diff --git a/customtabs/build.gradle b/customtabs/build.gradle
new file mode 100644
index 0000000..fc552c2
--- /dev/null
+++ b/customtabs/build.gradle
@@ -0,0 +1,21 @@
+apply plugin: 'android-library'
+
+archivesBaseName = 'customtabs'
+
+android {
+ compileSdkVersion 'current'
+
+ sourceSets {
+ main.manifest.srcFile 'AndroidManifest.xml'
+ main.java.srcDirs = ['src']
+ main.aidl.srcDirs = ['src']
+ main.res.srcDir 'res'
+ main.assets.srcDir 'assets'
+ main.resources.srcDir 'java'
+ }
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_7
+ targetCompatibility JavaVersion.VERSION_1_7
+ }
+}