Closed GoogleCodeExporter closed 8 years ago
thanks for the feedback. save to SD should be fixed, and i took your suggestion
on the SDK version settings.
Original comment by jeffrey.blattman@gmail.com
on 24 Sep 2010 at 3:16
I confirm the fix for the application downloaded from Market.
But I don't see the changes in the source code here ;)
Original comment by DNelubin
on 24 Sep 2010 at 4:47
yes, i behind a firewall here and can't commit it yet, but i will. diffs pasted
below.
Index: release/alogcat-1.5.2.apk
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: release/alogcat-1.5.2.apk
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Index: AndroidManifest.xml
===================================================================
--- AndroidManifest.xml (revision 18)
+++ AndroidManifest.xml (working copy)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.jtb.alogcat" android:versionCode="19"
android:versionName="1.5.1">
+ package="org.jtb.alogcat" android:versionCode="20"
android:versionName="1.5.2">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".LogActivity" android:label="@string/app_name">
<intent-filter>
@@ -8,8 +8,9 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
- <activity android:name=".PrefsActivity"
android:label="@string/app_prefs"/>
+ <activity android:name=".PrefsActivity"
android:label="@string/app_prefs" />
</application>
- <uses-sdk android:minSdkVersion="4"/>
+ <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4" />
<uses-permission android:name="android.permission.READ_LOGS" />
+ <uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</manifest>
Original comment by jeffrey.blattman@gmail.com
on 24 Sep 2010 at 4:51
Good. Thank you.
Original comment by DNelubin
on 24 Sep 2010 at 4:56
Original issue reported on code.google.com by
DNelubin
on 24 Sep 2010 at 11:59