Skip to content

Commit f35d30c

Browse files
committed
add apk file.
1 parent 909e63a commit f35d30c

File tree

3 files changed

+39
-0
lines changed

3 files changed

+39
-0
lines changed

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
11
/bin/
22
/libs/
33
/gen/
4+
*.class
5+
*.jar
6+
/bin/classes
7+
/bin/dexedLibs
8+
/bin/res
9+
/bin/R.txt
10+
/bin/classes.dex
11+
/bin/jarlist.cache
12+
/bin/resources.ap_

bin/AndroidManifest.xml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/2002/xmlspec/dtd/2.10/xmlspec.dtd">
3+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
4+
package="com.stock.turtle"
5+
android:versionCode="1"
6+
android:versionName="1.0" >
7+
8+
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" />
9+
10+
<uses-permission android:name="android.permission.INTERNET" />
11+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
12+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
13+
14+
<application
15+
android:allowBackup="true"
16+
android:icon="@drawable/ic_launcher"
17+
android:label="@string/app_name"
18+
android:theme="@style/AppTheme" >
19+
<activity
20+
android:name=".MainActivity"
21+
android:label="@string/app_name" >
22+
<intent-filter>
23+
<action android:name="android.intent.action.MAIN" />
24+
25+
<category android:name="android.intent.category.LAUNCHER" />
26+
</intent-filter>
27+
</activity>
28+
</application>
29+
30+
</manifest>

bin/TurtleTrade.apk

70.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)