Skip to content

Commit 4ffd7ad

Browse files
committed
Initialize project
0 parents  commit 4ffd7ad

File tree

120 files changed

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

120 files changed

+24797
-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

.idea/dictionaries/dse.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 33 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Tree - Simple, Nature Toolbox for your Android

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: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
signingConfigs {
5+
config {
6+
keyAlias 'duangsuse'
7+
keyPassword 'dse'
8+
storeFile file('duang.keystore')
9+
storePassword 'dse'
10+
}
11+
}
12+
compileSdkVersion 27
13+
buildToolsVersion "27.0.0"
14+
defaultConfig {
15+
applicationId "org.duangsuse.tree"
16+
minSdkVersion 14
17+
targetSdkVersion 27
18+
versionCode 1
19+
versionName "1.0-氧"
20+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
21+
signingConfig signingConfigs.config
22+
}
23+
buildTypes {
24+
release {
25+
minifyEnabled true
26+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
27+
signingConfig signingConfigs.config
28+
zipAlignEnabled true
29+
}
30+
debug {
31+
signingConfig signingConfigs.config
32+
versionNameSuffix 'N'
33+
}
34+
}
35+
lintOptions {
36+
disable 'MissingApplicationIcon', 'GoogleAppIndexingWarning', 'AllowBackup'
37+
}
38+
productFlavors {
39+
}
40+
}
41+
42+
dependencies {
43+
implementation fileTree(include: ['*.jar'], dir: 'libs')
44+
testImplementation 'junit:junit:4.12'
45+
androidTestImplementation 'com.android.support.test:runner:1.0.1'
46+
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
47+
}

app/duang.keystore

1.31 KB
Binary file not shown.

0 commit comments

Comments
 (0)