Skip to content

Commit 1c25566

Browse files
committed
update
1 parent a719347 commit 1c25566

File tree

207 files changed

+4126
-1920
lines changed

Some content is hidden

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

207 files changed

+4126
-1920
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
3-
<name>android.demo</name>
3+
<name>aaa_test</name>
44
<comment></comment>
55
<projects>
66
</projects>
Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,30 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="android.demo"
3+
package="com.example.aaa_test"
44
android:versionCode="1"
55
android:versionName="1.0" >
66

7-
<uses-sdk android:minSdkVersion="15" />
7+
<uses-sdk
8+
android:minSdkVersion="17"
9+
android:targetSdkVersion="17" />
810

911
<application
12+
android:allowBackup="true"
1013
android:icon="@drawable/ic_launcher"
11-
android:label="@string/app_name" >
14+
android:label="@string/app_name"
15+
android:theme="@style/AppTheme" >
1216
<activity
13-
android:name=".MainActivity"
17+
android:name="com.example.aaa_test.MainActivity"
1418
android:label="@string/app_name" >
1519
<intent-filter>
1620
<action android:name="android.intent.action.MAIN" />
1721

1822
<category android:name="android.intent.category.LAUNCHER" />
1923
</intent-filter>
2024
</activity>
21-
<activity android:name="NextActivity" >
22-
</activity>
23-
<activity android:name="SendReceiverActivity" >
25+
<activity
26+
android:name="com.example.aaa_test.SecondActivity"
27+
android:label="@string/app_name" >
2428
<intent-filter>
2529
<action android:name="android.intent.action.SEND" />
2630

aaa_test/ic_launcher-web.png

50.2 KB
Loading
384 KB
Binary file not shown.

aaa_test/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+
#}

aaa_test/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=Google Inc.:Google APIs:17
7.48 KB
Loading
3.69 KB
Loading
12.2 KB
Loading

0 commit comments

Comments
 (0)