Skip to content

Commit 77a714d

Browse files
committed
initial release.
0 parents  commit 77a714d

File tree

102 files changed

+3591
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+3591
-0
lines changed

Library/.gitignore

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

Library/build.gradle

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
apply plugin: 'com.android.library'
2+
apply plugin: 'com.github.dcendents.android-maven'
3+
4+
android {
5+
compileSdkVersion 28
6+
7+
defaultConfig {
8+
minSdkVersion 19
9+
targetSdkVersion 28
10+
versionCode 1
11+
versionName "1.0"
12+
13+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
14+
15+
}
16+
buildTypes {
17+
release {
18+
minifyEnabled false
19+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
20+
}
21+
}
22+
}
23+
24+
dependencies {
25+
implementation fileTree(dir: 'libs', include: ['*.jar'])
26+
testImplementation 'junit:junit:4.12'
27+
androidTestImplementation 'androidx.test:runner:1.1.1'
28+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
29+
implementation 'androidx.appcompat:appcompat:1.0.2'
30+
}

Library/images/appbar.png

156 KB
Loading
294 KB
Loading

Library/images/bottom_sheets.png

186 KB
Loading

Library/images/buttons.png

31 KB
Loading

Library/images/chips.png

102 KB
Loading

Library/images/dialog.png

474 KB
Loading

Library/images/elevation_1.png

38.1 KB
Loading

Library/images/elevation_2.png

463 KB
Loading

0 commit comments

Comments
 (0)