Skip to content

Commit e6c6b1f

Browse files
author
yoyoqin
committed
转为AndroidStudio工程
转为AndroidStudio工程
1 parent d1b3bb9 commit e6c6b1f

503 files changed

Lines changed: 3484 additions & 3112 deletions

File tree

Some content is hidden

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

android/.classpath

Lines changed: 0 additions & 9 deletions
This file was deleted.

android/.gitignore

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

android/.project

Lines changed: 0 additions & 39 deletions
This file was deleted.

android/.settings/org.eclipse.core.resources.prefs

Lines changed: 0 additions & 2 deletions
This file was deleted.

android/.settings/org.eclipse.jdt.core.prefs

Lines changed: 0 additions & 4 deletions
This file was deleted.

android/LICENSE.TXT

Lines changed: 0 additions & 101 deletions
This file was deleted.

android/app/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.iml
2+
/build

android/app/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.application'
2+
3+
android {
4+
compileSdkVersion 23
5+
buildToolsVersion "26.0.0"
6+
7+
defaultConfig {
8+
applicationId "com.tencent.wstt.gt"
9+
minSdkVersion 14
10+
targetSdkVersion 23
11+
12+
ndk {
13+
moduleName "mem_fill_tool"
14+
}
15+
}
16+
17+
buildTypes {
18+
release {
19+
minifyEnabled false
20+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
21+
}
22+
}
23+
}
24+
25+
dependencies {
26+
compile files('libs/android-support-v13.jar')
27+
compile files('libs/bugly_crash_release.jar')
28+
compile files('libs/mid-sdk-3.6.jar')
29+
compile files('libs/mta-sdk-2.2.1.jar')
30+
}

0 commit comments

Comments
 (0)