diff --git a/.gitignore b/.gitignore index 7e824a6e4..6099b0c2e 100644 --- a/.gitignore +++ b/.gitignore @@ -31,7 +31,7 @@ proguard/ gen-external-apklibs # IDE -/.idea/workspace.xml +.idea .settings *.iml diff --git a/.idea/.name b/.idea/.name deleted file mode 100644 index 1fd74d198..000000000 --- a/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -android \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml deleted file mode 100644 index 217af471a..000000000 --- a/.idea/compiler.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml deleted file mode 100644 index e7bedf337..000000000 --- a/.idea/copyright/profiles_settings.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml deleted file mode 100644 index e206d70d8..000000000 --- a/.idea/encodings.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/.idea/gradle.xml b/.idea/gradle.xml deleted file mode 100644 index 9d10455b1..000000000 --- a/.idea/gradle.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - diff --git a/.idea/libraries/actionbarsherlock_4_4_0.xml b/.idea/libraries/actionbarsherlock_4_4_0.xml deleted file mode 100644 index ae87a6d91..000000000 --- a/.idea/libraries/actionbarsherlock_4_4_0.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/native_libs.xml b/.idea/libraries/native_libs.xml deleted file mode 100644 index dceb4fa20..000000000 --- a/.idea/libraries/native_libs.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/support_v4_19_1_0.xml b/.idea/libraries/support_v4_19_1_0.xml deleted file mode 100644 index 7b6ad6165..000000000 --- a/.idea/libraries/support_v4_19_1_0.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index e91299f2f..000000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - - - - - - - 1.6 - - - - - - - - 1.8 - - - - - - - - - - - - - - - - diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 0cf9e3e7e..000000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/.idea/scopes/scope_settings.xml b/.idea/scopes/scope_settings.xml deleted file mode 100644 index 922003b84..000000000 --- a/.idea/scopes/scope_settings.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 2e0588cc3..000000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/build.gradle b/build.gradle index 019ac162e..3c15575f8 100644 --- a/build.gradle +++ b/build.gradle @@ -9,14 +9,14 @@ buildscript { } } -apply plugin: 'android' +apply plugin: 'com.android.application' repositories { mavenCentral() } dependencies { - compile 'com.android.support:support-v4:19.1.0' + compile 'com.android.support:support-v4:21.0.3' compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar' compile files("$buildDir/native-libs/native-libs.jar") diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 726246576..a7166e70c 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Wed Apr 29 14:49:42 CEST 2015 +#Thu May 14 17:05:53 CEST 2015 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-2.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-2.3-all.zip diff --git a/src/org/kiwix/kiwixmobile/ZimContentProvider.java b/src/org/kiwix/kiwixmobile/ZimContentProvider.java index 9f2d5c20e..7cee148e5 100644 --- a/src/org/kiwix/kiwixmobile/ZimContentProvider.java +++ b/src/org/kiwix/kiwixmobile/ZimContentProvider.java @@ -46,7 +46,7 @@ public class ZimContentProvider extends ContentProvider { public static final Uri UI_URI = Uri.parse("content://org.kiwix.ui/"); - private static final String VIDEO_PATTERN = "([^\\s]+(\\.(?i)(3gp|mp4|m4a|aac))$)"; + private static final String VIDEO_PATTERN = "([^\\s]+(\\.(?i)(3gp|mp4|m4a|webm|mkv))$)"; private static String zimFileName;