Skip to content

Commit

Permalink
0.1.6 TESTING version.
Browse files Browse the repository at this point in the history
added custom column feature
bug fixes.
  • Loading branch information
mariotaku committed Aug 4, 2012
1 parent 451f2b4 commit df2c625
Show file tree
Hide file tree
Showing 77 changed files with 224,526 additions and 143,453 deletions.
23 changes: 21 additions & 2 deletions AndroidManifest.xml
Expand Up @@ -2,7 +2,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.mariotaku.twidere"
android:installLocation="auto"
android:versionCode="33"
android:versionCode="34"
android:versionName="@string/app_version">

<uses-sdk
Expand Down Expand Up @@ -70,7 +70,7 @@
android:name=".activity.HomeActivity"
android:label="@string/app_name"
android:launchMode="singleTop"
android:windowSoftInputMode="adjustNothing">
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

Expand Down Expand Up @@ -361,6 +361,15 @@
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity
android:name=".activity.FilePickerActivity"
android:label="@string/pick_file">
<intent-filter>
<action android:name="org.mariotaku.twidere.PICK_FILE"/>

<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity
android:name=".activity.ExtensionsListActivity"
android:label="@string/extensions">
Expand All @@ -379,6 +388,16 @@
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity
android:name=".activity.EditCustomTabActivity"
android:label="@string/add_tab">
<intent-filter>
<action android:name="org.mariotaku.twidere.NEW_CUSTOM_TAB"/>
<action android:name="org.mariotaku.twidere.EDIT_CUSTOM_TAB"/>

<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>

<service
android:name=".service.TwidereService"
Expand Down
59 changes: 41 additions & 18 deletions proguard-project.txt
@@ -1,20 +1,43 @@
# To enable ProGuard in your project, edit project.properties
# to define the proguard.config property as described in that file.
#
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in ${sdk.dir}/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the ProGuard
# include property in project.properties.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
-dontobfuscate
-optimizationpasses 5
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-dontpreverify
-verbose
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*

# Add any project specific keep options here:
-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.view.View
-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
-keep public class org.mariotaku.twidere.ITwidereService

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
-keepclasseswithmembernames class * {
native <methods>;
}

-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet);
}

-keepclasseswithmembers class * {
public <init>(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 *;
}

0 comments on commit df2c625

Please sign in to comment.