Skip to content

Commit 321834c

Browse files
committed
add project template
1 parent 5250339 commit 321834c

File tree

151 files changed

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

151 files changed

+2616
-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+
.idea
3+
.gradle
4+
.DS_Store
5+
.externalNativeBuild
6+
/local.properties
7+
/build
8+
/captures
9+
/app/build

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: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 26
5+
buildToolsVersion "26.0.1"
6+
defaultConfig {
7+
applicationId "io.github.zhaomenghuan.template"
8+
minSdkVersion 11
9+
targetSdkVersion 26
10+
versionCode 1
11+
versionName "1.0"
12+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
13+
}
14+
buildTypes {
15+
release {
16+
minifyEnabled false
17+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18+
}
19+
}
20+
}
21+
22+
dependencies {
23+
compile fileTree(include: ['*.jar'], dir: 'libs')
24+
// 基础包
25+
compile files('libs/android-support-v4.jar')
26+
compile files('libs/my-imageloader.jar')
27+
compile files('libs/my-nineoldandroids-2.4.0.jar')
28+
compile files('libs/pdr.jar')
29+
compile files('libs/ui.jar')
30+
// Accelerometer / Proximity / Orientation
31+
compile files('libs/sensor.jar')
32+
// Audio
33+
compile files('libs/audio.jar')
34+
// Barcode
35+
compile files('libs/barcode.jar')
36+
// Cache / Storage / Runtime / Zip
37+
compile files('libs/nopermission.jar')
38+
// Camera
39+
compile files('libs/camera.jar')
40+
// Device
41+
compile files('libs/device.jar')
42+
// Downloader
43+
compile files('libs/downloader.jar')
44+
// File
45+
compile files('libs/file.jar')
46+
// Gallery
47+
compile files('libs/gallery.jar')
48+
// Geolocation -> system
49+
compile files('libs/geolocation-system.jar')
50+
compile files('libs/geolocation.jar')
51+
// XMLHttpRequest
52+
compile files('libs/xhr.jar')
53+
// Messaging
54+
compile files('libs/messaging.jar')
55+
// NativeUI
56+
compile files('libs/nativeui.jar')
57+
// NativeObj
58+
compile files('libs/nativeObj.jar')
59+
// Navigator
60+
compile files('libs/navigatorui.jar')
61+
// Invocation
62+
compile files('libs/invocation.jar')
63+
// Uploader
64+
compile files('libs/uploader.jar')
65+
}

app/libs/android-support-v4.jar

341 KB
Binary file not shown.

app/libs/audio.jar

15.7 KB
Binary file not shown.

app/libs/barcode.jar

477 KB
Binary file not shown.

app/libs/camera.jar

9.67 KB
Binary file not shown.

app/libs/device.jar

6.27 KB
Binary file not shown.

app/libs/downloader.jar

18.4 KB
Binary file not shown.

app/libs/file.jar

10.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)