└── FirstProject ├── bin ├── classes.dex ├── resources.ap_ └── FirstProject.apk ├── res ├── drawable-hdpi │ └── icon.png ├── drawable-ldpi │ └── icon.png ├── drawable-mdpi │ └── icon.png ├── values │ └── strings.xml └── layout │ └── main.xml ├── .classpath ├── default.properties ├── src └── com │ └── firstabcwww │ └── FirstProjectActivity.java ├── AndroidManifest.xml ├── .project └── proguard.cfg /FirstProject/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/License/qq/master/FirstProject/bin/classes.dex -------------------------------------------------------------------------------- /FirstProject/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/License/qq/master/FirstProject/bin/resources.ap_ -------------------------------------------------------------------------------- /FirstProject/bin/FirstProject.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/License/qq/master/FirstProject/bin/FirstProject.apk -------------------------------------------------------------------------------- /FirstProject/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/License/qq/master/FirstProject/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /FirstProject/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/License/qq/master/FirstProject/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /FirstProject/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/License/qq/master/FirstProject/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /FirstProject/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hello World, FirstProjectActivity! 4 | FirstProject 5 | 6 | -------------------------------------------------------------------------------- /FirstProject/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FirstProject/default.properties: -------------------------------------------------------------------------------- 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 use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:10 12 | -------------------------------------------------------------------------------- /FirstProject/src/com/firstabcwww/FirstProjectActivity.java: -------------------------------------------------------------------------------- 1 | package com.firstabcwww; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | 6 | public class FirstProjectActivity extends Activity { 7 | /** Called when the activity is first created. */ 8 | @Override 9 | public void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | setContentView(R.layout.main); 12 | } 13 | } -------------------------------------------------------------------------------- /FirstProject/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /FirstProject/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /FirstProject/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | FirstProject 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /FirstProject/proguard.cfg: -------------------------------------------------------------------------------- 1 | -optimizationpasses 5 2 | -dontusemixedcaseclassnames 3 | -dontskipnonpubliclibraryclasses 4 | -dontpreverify 5 | -verbose 6 | -optimizations !code/simplification/arithmetic,!field/*,!class/merging/* 7 | 8 | -keep public class * extends android.app.Activity 9 | -keep public class * extends android.app.Application 10 | -keep public class * extends android.app.Service 11 | -keep public class * extends android.content.BroadcastReceiver 12 | -keep public class * extends android.content.ContentProvider 13 | -keep public class * extends android.app.backup.BackupAgentHelper 14 | -keep public class * extends android.preference.Preference 15 | -keep public class com.android.vending.licensing.ILicensingService 16 | 17 | -keepclasseswithmembernames class * { 18 | native ; 19 | } 20 | 21 | -keepclasseswithmembers class * { 22 | public (android.content.Context, android.util.AttributeSet); 23 | } 24 | 25 | -keepclasseswithmembers class * { 26 | public (android.content.Context, android.util.AttributeSet, int); 27 | } 28 | 29 | -keepclassmembers class * extends android.app.Activity { 30 | public void *(android.view.View); 31 | } 32 | 33 | -keepclassmembers enum * { 34 | public static **[] values(); 35 | public static ** valueOf(java.lang.String); 36 | } 37 | 38 | -keep class * implements android.os.Parcelable { 39 | public static final android.os.Parcelable$Creator *; 40 | } 41 | --------------------------------------------------------------------------------