Skip to content
This repository has been archived by the owner on May 30, 2021. It is now read-only.

Refactor video #24

Merged
merged 2 commits into from
Mar 20, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Media Picker
![](https://img.shields.io/badge/Platform-Android-brightgreen.svg)
![](https://img.shields.io/hexpm/l/plug.svg)
![](https://img.shields.io/badge/version-2.3.0-blue.svg)
![](https://img.shields.io/badge/version-2.3.1-blue.svg)
[![ghit.me](https://ghit.me/badge.svg?repo=Alhazmy13/MediaPicker)](https://ghit.me/repo/Alhazmy13/MediaPicker)

**[Please let me know if your application go to production via this link](https://docs.google.com/forms/d/e/1FAIpQLSe4Y5Fwn1mlEoD4RxjXQzTvL4mofhESuBlTkAPQhI7J_WqMDQ/viewform?c=0&w=1)**
Expand All @@ -22,15 +22,15 @@ This build `2.x.x` will break backward compatibility and there are a lot of chan
<dependency>
<groupId>net.alhazmy13.MediaPicker</groupId>
<artifactId>libary</artifactId>
<version>2.3.0</version>
<version>2.3.1</version>
</dependency>
```


**Gradle**
```gradle
dependencies {
compile 'net.alhazmy13.MediaPicker:libary:2.3.0'
compile 'net.alhazmy13.MediaPicker:libary:2.3.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion deps.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ext {
rxAndroid : '2.0.1',
MIN_SDK_VERSION : 14,
TARGET_SDK_VERSION : 25,
LIBRARY_VERSION : '2.3.0'
LIBRARY_VERSION : '2.3.1'
]
supportDeps = [
appcompatV7: "com.android.support:appcompat-v7:$versions.support",
Expand Down
22 changes: 11 additions & 11 deletions libary/build.gradle
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
apply plugin: 'com.android.library'
//apply plugin: 'com.novoda.bintray-release'
apply plugin: 'com.novoda.bintray-release'
apply from: '../deps.gradle'

//./gradlew bintrayUpload
//publish {
// userOrg = 'alhazmy13'
// groupId = 'net.alhazmy13.MediaPicker'
// artifactId = 'libary'
// uploadName = 'MediaPicker'
// publishVersion = versions.LIBRARY_VERSION
// desc = 'MediaPickerRx'
// dryRun = false
// website = 'https://github.com/alhzmy13/MediaPicker'
//}
publish {
userOrg = 'alhazmy13'
groupId = 'net.alhazmy13.MediaPicker'
artifactId = 'libary'
uploadName = 'MediaPicker'
publishVersion = versions.LIBRARY_VERSION
desc = 'MediaPickerRx'
dryRun = false
website = 'https://github.com/alhzmy13/MediaPicker'
}

android {
compileSdkVersion versions.TARGET_SDK_VERSION
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
public class VideoPicker {


static final int VIDEO_PICKER_REQUEST_CODE = 53213;
static final String EXTRA_VIDEO_PATH = "EXTRA_VIDEO_PATH";
public static final int VIDEO_PICKER_REQUEST_CODE = 53213;
public static final String EXTRA_VIDEO_PATH = "EXTRA_VIDEO_PATH";

private final VideoConfig imageConfig;

Expand Down
22 changes: 11 additions & 11 deletions rxjava/build.gradle
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
apply plugin: 'com.android.library'
apply from: '../deps.gradle'
apply plugin: 'com.novoda.bintray-release'
//apply plugin: 'com.novoda.bintray-release'

//./gradlew bintrayUpload

publish {
userOrg = 'alhazmy13'
groupId = 'net.alhazmy13.MediaPicker'
artifactId = 'rxjava'
uploadName = 'MediaPickerRx'
publishVersion = versions.LIBRARY_VERSION
desc = 'MediaPickerRx'
dryRun = false
website = 'https://github.com/alhzmy13/MediaPicker'
}
//publish {
// userOrg = 'alhazmy13'
// groupId = 'net.alhazmy13.MediaPicker'
// artifactId = 'rxjava'
// uploadName = 'MediaPickerRx'
// publishVersion = versions.LIBRARY_VERSION
// desc = 'MediaPickerRx'
// dryRun = false
// website = 'https://github.com/alhzmy13/MediaPicker'
//}

android {
compileSdkVersion versions.TARGET_SDK_VERSION
Expand Down