From 8f9c60ddce4084fc478fdac6b4408adbe2559266 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 7 Sep 2011 09:56:46 +0400 Subject: initial --- .classpath | 7 +++++++ .gitignore | 2 ++ .project | 33 ++++++++++++++++++++++++++++++ AndroidManifest.xml | 18 +++++++++++++++++ default.properties | 11 ++++++++++ proguard.cfg | 40 +++++++++++++++++++++++++++++++++++++ src/org/fox/ttrss/MainActivity.java | 13 ++++++++++++ 7 files changed, 124 insertions(+) create mode 100755 .classpath create mode 100755 .gitignore create mode 100755 .project create mode 100755 AndroidManifest.xml create mode 100755 default.properties create mode 100755 proguard.cfg create mode 100755 src/org/fox/ttrss/MainActivity.java diff --git a/.classpath b/.classpath new file mode 100755 index 00000000..6e9239ff --- /dev/null +++ b/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/.gitignore b/.gitignore new file mode 100755 index 00000000..4bca0207 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/gen +/bin \ No newline at end of file diff --git a/.project b/.project new file mode 100755 index 00000000..4a90fe22 --- /dev/null +++ b/.project @@ -0,0 +1,33 @@ + + + org.fox.ttrss + + + + + + 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/AndroidManifest.xml b/AndroidManifest.xml new file mode 100755 index 00000000..74d5ecfb --- /dev/null +++ b/AndroidManifest.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/default.properties b/default.properties new file mode 100755 index 00000000..d1cacf1a --- /dev/null +++ b/default.properties @@ -0,0 +1,11 @@ +# 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 use, +# "build.properties", and override values to adapt the script to your +# project structure. + +# Project target. +target=android-11 diff --git a/proguard.cfg b/proguard.cfg new file mode 100755 index 00000000..b1cdf17b --- /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/src/org/fox/ttrss/MainActivity.java b/src/org/fox/ttrss/MainActivity.java new file mode 100755 index 00000000..4a60ad02 --- /dev/null +++ b/src/org/fox/ttrss/MainActivity.java @@ -0,0 +1,13 @@ +package org.fox.ttrss; + +import android.app.Activity; +import android.os.Bundle; + +public class MainActivity extends Activity { + /** Called when the activity is first created. */ + @Override + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.main); + } +} \ No newline at end of file -- cgit v1.2.3-54-g00ecf