diff --git a/.classpath b/.classpath new file mode 100644 index 0000000..7bc01d9 --- /dev/null +++ b/.classpath @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..64d3c97 --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +# Built application files +*.apk +*.ap_ + +# Files for the Dalvik VM +*.dex + +# Java class files +*.class + +# Generated files +bin/ +gen/ + +# Gradle files +.gradle/ +build/ + +# Local configuration file (sdk path, etc) +local.properties + +# Proguard folder generated by Eclipse +proguard/ diff --git a/.project b/.project new file mode 100644 index 0000000..c13647f --- /dev/null +++ b/.project @@ -0,0 +1,33 @@ + + + PasteeDroid + + + + + + com.android.ide.eclipse.adt.ResourceManagerBuilder + + + + + com.android.ide.eclipse.adt.PreCompilerBuilder + + + + + org.eclipse.jdt.core.javabuilder + + + + + com.android.ide.eclipse.adt.ApkBuilder + + + + + + com.android.ide.eclipse.adt.AndroidNature + org.eclipse.jdt.core.javanature + + diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000..b080d2d --- /dev/null +++ b/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,4 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 +org.eclipse.jdt.core.compiler.compliance=1.6 +org.eclipse.jdt.core.compiler.source=1.6 diff --git a/AndroidManifest.xml b/AndroidManifest.xml new file mode 100644 index 0000000..d08a04d --- /dev/null +++ b/AndroidManifest.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/proguard.cfg b/proguard.cfg new file mode 100644 index 0000000..b1cdf17 --- /dev/null +++ b/proguard.cfg @@ -0,0 +1,40 @@ +-optimizationpasses 5 +-dontusemixedcaseclassnames +-dontskipnonpubliclibraryclasses +-dontpreverify +-verbose +-optimizations !code/simplification/arithmetic,!field/*,!class/merging/* + +-keep public class * extends android.app.Activity +-keep public class * extends android.app.Application +-keep public class * extends android.app.Service +-keep public class * extends android.content.BroadcastReceiver +-keep public class * extends android.content.ContentProvider +-keep public class * extends android.app.backup.BackupAgentHelper +-keep public class * extends android.preference.Preference +-keep public class com.android.vending.licensing.ILicensingService + +-keepclasseswithmembernames class * { + native ; +} + +-keepclasseswithmembers class * { + public (android.content.Context, android.util.AttributeSet); +} + +-keepclasseswithmembers class * { + public (android.content.Context, android.util.AttributeSet, int); +} + +-keepclassmembers class * extends android.app.Activity { + public void *(android.view.View); +} + +-keepclassmembers enum * { + public static **[] values(); + public static ** valueOf(java.lang.String); +} + +-keep class * implements android.os.Parcelable { + public static final android.os.Parcelable$Creator *; +} diff --git a/project.properties b/project.properties new file mode 100644 index 0000000..22d0dca --- /dev/null +++ b/project.properties @@ -0,0 +1,14 @@ +# This file is automatically generated by Android Tools. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file must be checked in Version Control Systems. +# +# To customize properties used by the Ant build system edit +# "ant.properties", and override values to adapt the script to your +# project structure. +# +# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): +#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt + +# Project target. +target=android-7 diff --git a/res/drawable-hdpi/ic_menu_about.png b/res/drawable-hdpi/ic_menu_about.png new file mode 100644 index 0000000..21952c0 Binary files /dev/null and b/res/drawable-hdpi/ic_menu_about.png differ diff --git a/res/drawable-hdpi/ic_menu_more.png b/res/drawable-hdpi/ic_menu_more.png new file mode 100644 index 0000000..ac725b6 Binary files /dev/null and b/res/drawable-hdpi/ic_menu_more.png differ diff --git a/res/drawable-hdpi/icon.png b/res/drawable-hdpi/icon.png new file mode 100644 index 0000000..85105df Binary files /dev/null and b/res/drawable-hdpi/icon.png differ diff --git a/res/drawable-ldpi/ic_menu_about.png b/res/drawable-ldpi/ic_menu_about.png new file mode 100644 index 0000000..725ca5c Binary files /dev/null and b/res/drawable-ldpi/ic_menu_about.png differ diff --git a/res/drawable-ldpi/ic_menu_more.png b/res/drawable-ldpi/ic_menu_more.png new file mode 100644 index 0000000..6a31444 Binary files /dev/null and b/res/drawable-ldpi/ic_menu_more.png differ diff --git a/res/drawable-ldpi/icon.png b/res/drawable-ldpi/icon.png new file mode 100644 index 0000000..e851881 Binary files /dev/null and b/res/drawable-ldpi/icon.png differ diff --git a/res/drawable-mdpi/ic_menu_about.png b/res/drawable-mdpi/ic_menu_about.png new file mode 100644 index 0000000..52ac241 Binary files /dev/null and b/res/drawable-mdpi/ic_menu_about.png differ diff --git a/res/drawable-mdpi/ic_menu_more.png b/res/drawable-mdpi/ic_menu_more.png new file mode 100644 index 0000000..0668c8a Binary files /dev/null and b/res/drawable-mdpi/ic_menu_more.png differ diff --git a/res/drawable-mdpi/icon.png b/res/drawable-mdpi/icon.png new file mode 100644 index 0000000..30cae6e Binary files /dev/null and b/res/drawable-mdpi/icon.png differ diff --git a/res/drawable-xhdpi/ic_menu_about.png b/res/drawable-xhdpi/ic_menu_about.png new file mode 100644 index 0000000..e95d6bf Binary files /dev/null and b/res/drawable-xhdpi/ic_menu_about.png differ diff --git a/res/drawable-xhdpi/ic_menu_more.png b/res/drawable-xhdpi/ic_menu_more.png new file mode 100644 index 0000000..0c46d4e Binary files /dev/null and b/res/drawable-xhdpi/ic_menu_more.png differ diff --git a/res/drawable-xhdpi/icon.png b/res/drawable-xhdpi/icon.png new file mode 100644 index 0000000..2bab452 Binary files /dev/null and b/res/drawable-xhdpi/icon.png differ diff --git a/res/layout/about.xml b/res/layout/about.xml new file mode 100644 index 0000000..53da465 --- /dev/null +++ b/res/layout/about.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/res/layout/main.xml b/res/layout/main.xml new file mode 100644 index 0000000..5fe5a2d --- /dev/null +++ b/res/layout/main.xml @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +