Skip to content

Commit a5d537f

Browse files
committed
Initial upload - v1.12.0
Initial GitHub managed version - 1.12.0
1 parent 84d5328 commit a5d537f

File tree

132 files changed

+15162
-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.

132 files changed

+15162
-0
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/workspace.xml
5+
/.idea/libraries
6+
.DS_Store
7+
/build
8+
/captures
9+
.externalNativeBuild

app/.gitignore

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

app/build.gradle

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 26
5+
defaultConfig {
6+
applicationId "com.csl.cs108ademoapp"
7+
minSdkVersion 19
8+
targetSdkVersion 26
9+
versionCode 17
10+
versionName "1.12.0"
11+
}
12+
compileOptions {
13+
sourceCompatibility JavaVersion.VERSION_1_7
14+
targetCompatibility JavaVersion.VERSION_1_7
15+
}
16+
}
17+
18+
dependencies {
19+
compile fileTree(include: ['*.jar'], dir: 'libs')
20+
compile 'com.android.support:design:26.1.0'
21+
implementation project(':cs108library4a-debug')
22+
}
1.94 MB
Binary file not shown.

app/libs/cs108library4a-debug.aar

195 KB
Binary file not shown.

app/proguard-rules.pro

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Add project specific ProGuard rules here.
2+
# By default, the flags in this file are appended to flags specified
3+
# in C:\Users\wallace.sit\AppData\Local\Android\sdk/tools/proguard/proguard-android.txt
4+
# You can edit the include path and order by changing the proguardFiles
5+
# directive in build.gradle.
6+
#
7+
# For more details, see
8+
# http://developer.android.com/guide/developing/tools/proguard.html
9+
10+
# Add any project specific keep options here:
11+
12+
# If your project uses WebView with JS, uncomment the following
13+
# and specify the fully qualified class name to the JavaScript interface
14+
# class:
15+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16+
# public *;
17+
#}

app/release/app-release.apk

2.75 MB
Binary file not shown.
2.74 MB
Binary file not shown.
1.97 MB
Binary file not shown.
2.75 MB
Binary file not shown.

0 commit comments

Comments
 (0)