Start google tasks integration

This commit is contained in:
Tommaso Berlose
2020-05-03 20:40:41 +02:00
parent 5b9ef9abc7
commit 67fc3dbcd8
10 changed files with 49 additions and 4 deletions

1
tasksintegration/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/build

View File

@ -0,0 +1,21 @@
apply plugin: 'com.android.dynamic-feature'
android {
compileSdkVersion 29
defaultConfig {
minSdkVersion 23
targetSdkVersion 29
versionCode 1
versionName "1.0"
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(':app')
}

View File

@ -0,0 +1,14 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:dist="http://schemas.android.com/apk/distribution"
package="com.tommasoberlose.tasksintegration">
<dist:module
dist:instant="false"
dist:title="@string/title_tasksintegration">
<dist:delivery>
<dist:on-demand />
</dist:delivery>
<dist:fusing dist:include="true" />
</dist:module>
</manifest>