Skip to content

Commit 5cf1837

Browse files
author
wenlong
committed
init
0 parents  commit 5cf1837

32 files changed

+1037
-0
lines changed

AndroidManifest.xml

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.obd.simpleexample"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-sdk
8+
android:minSdkVersion="8"
9+
android:targetSdkVersion="19" />
10+
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
11+
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" ></uses-permission>
12+
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" ></uses-permission>
13+
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" ></uses-permission>
14+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" ></uses-permission>
15+
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" ></uses-permission>
16+
<uses-permission android:name="android.permission.READ_PHONE_STATE" ></uses-permission>
17+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" ></uses-permission>
18+
<uses-permission android:name="android.permission.INTERNET" />
19+
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" ></uses-permission>
20+
<uses-permission android:name="android.permission.READ_LOGS" ></uses-permission>
21+
<uses-permission android:name="android.permission.VIBRATE" />
22+
<uses-permission android:name="android.permission.WAKE_LOCK" />
23+
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
24+
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
25+
26+
<application
27+
android:name="com.obd.app.MGApp"
28+
android:allowBackup="true"
29+
android:icon="@drawable/ic_launcher"
30+
android:label="@string/app_name"
31+
android:theme="@style/AppTheme" >
32+
<activity
33+
android:name="com.obd.simpleexample.MainActivity"
34+
android:label="@string/app_name" >
35+
<intent-filter>
36+
<action android:name="android.intent.action.MAIN" />
37+
38+
<category android:name="android.intent.category.LAUNCHER" />
39+
</intent-filter>
40+
</activity>
41+
42+
<service
43+
android:name="com.baidu.location.f"
44+
android:enabled="true"
45+
android:process=":remote" >
46+
<intent-filter>
47+
<action android:name="com.baidu.location.service_v2.2" >
48+
</action>
49+
</intent-filter>
50+
</service>
51+
52+
<meta-data
53+
android:name="com.baidu.lbsapi.API_KEY"
54+
android:value="B78s6D6BZHq1hXt9cLIfNC4I" />
55+
56+
<meta-data android:name="UMENG_APPKEY" android:value="550131a9fd98c56017000264" ></meta-data>
57+
<meta-data android:name="UMENG_CHANNEL" android:value="mapgoo" > </meta-data>
58+
59+
<receiver android:name="com.obd.receiver.BootReceiver" >
60+
<intent-filter>
61+
<action android:name="android.intent.action.BOOT_COMPLETED" />
62+
<category android:name="android.intent.category.DEFAULT" />
63+
</intent-filter>
64+
</receiver>
65+
66+
<service
67+
android:name="com.obd.service.DataSyncService"
68+
android:enabled="true" />
69+
</application>
70+
71+
</manifest>

ic_launcher-web.png

50.2 KB
Loading

libs/android-support-v4.jar

377 KB
Binary file not shown.

libs/armeabi/libZYOBD.so

13.1 KB
Binary file not shown.

libs/armeabi/liblocSDK4d.so

33.8 KB
Binary file not shown.

libs/locSDK_4.2.jar

195 KB
Binary file not shown.

libs/umeng-analytics-v5.2.4.jar

351 KB
Binary file not shown.

libs/zyobd.jar

31.7 KB
Binary file not shown.

proguard-project.txt

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

project.properties

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# This file is automatically generated by Android Tools.
2+
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3+
#
4+
# This file must be checked in Version Control Systems.
5+
#
6+
# To customize properties used by the Ant build system edit
7+
# "ant.properties", and override values to adapt the script to your
8+
# project structure.
9+
#
10+
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11+
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12+
13+
# Project target.
14+
target=android-17

0 commit comments

Comments
 (0)