Skip to content

Commit 589a56e

Browse files
author
=
committed
test dynamic delivery
1 parent 1b08cb9 commit 589a56e

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

dynamic_feature_cell/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

dynamic_feature_cell/build.gradle

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
apply plugin: 'com.android.dynamic-feature'
2+
3+
android {
4+
compileSdkVersion 28
5+
6+
7+
8+
defaultConfig {
9+
minSdkVersion 15
10+
targetSdkVersion 28
11+
versionCode 1
12+
versionName "1.0"
13+
14+
15+
}
16+
17+
18+
}
19+
20+
dependencies {
21+
implementation fileTree(dir: 'libs', include: ['*.jar'])
22+
implementation project(':app')
23+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
xmlns:dist="http://schemas.android.com/apk/distribution"
3+
package="com.efraespada.dynamic_feature_cell">
4+
5+
<dist:module
6+
dist:onDemand="true"
7+
dist:title="@string/title_dynamic_feature_cell">
8+
<dist:fusing dist:include="true" />
9+
</dist:module>
10+
</manifest>
11+

0 commit comments

Comments
 (0)