Skip to content

Commit

Permalink
1.8.1 Bugfix release
Browse files Browse the repository at this point in the history
- view image link wasn't working on some versions of Android OS
- target is Android API 18 now
  • Loading branch information
Alex Trofimov authored and Alex Trofimov committed Sep 2, 2013
1 parent 9015d8f commit ba8d205
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
6 changes: 3 additions & 3 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.boonex.oo"
android:versionCode="180"
android:versionName="1.8.0">
android:versionCode="181"
android:versionName="1.8.1">

<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" />
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="18" />

<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true" />

Expand Down
2 changes: 1 addition & 1 deletion facebook/project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@

android.library=true
# Project target.
target=Google Inc.:Google APIs:17
target=android-18
4 changes: 4 additions & 0 deletions google-play-services_lib/.settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion google-play-services_lib/project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt

# Project target.
target=android-10
target=android-18
android.library=true
2 changes: 1 addition & 1 deletion project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
# Indicates whether an apk should be generated for each density.
split.density=false
# Project target.
target=Google Inc.:Google APIs:17
target=android-18
android.library.reference.1=facebook
android.library.reference.2=google-play-services_lib
2 changes: 2 additions & 0 deletions src/com/boonex/oo/media/ImagesGallery.java
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@ protected MediaFilesAdapter getAdapterInstance (Context context, Object[] aFiles
}

protected void checkButtonsVisibility (Menu menu) {
if (null == m_listImages)
return;
int n = m_listImages.size();
if (null != menu && Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {

Expand Down

0 comments on commit ba8d205

Please sign in to comment.