Skip to content

Commit e12f3e5

Browse files
committed
changed module name & bumped version
1 parent 4ba3e3b commit e12f3e5

31 files changed

+6
-11
lines changed
File renamed without changes.

FFmpeg-library/build.gradle renamed to android-ffmpeg/build.gradle

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
apply plugin: 'com.android.library'
22

33
ext {
4-
bintrayRepo = 'Android-FFmpeg'
5-
bintrayName = 'android-ffmpeg'
6-
74
publishedGroupId = 'nl.bravobit'
85
libraryName = 'Android FFmpeg'
96
artifact = 'android-ffmpeg'
@@ -13,7 +10,7 @@ ext {
1310
siteUrl = 'https://github.com/bravobit/FFmpeg-Android'
1411
gitUrl = 'https://github.com/bravobit/FFmpeg-Android.git'
1512

16-
libraryVersion = '1.0.1'
13+
libraryVersion = '1.0.2'
1714

1815
developerId = 'Bravobit'
1916
developerName = 'Bravobit'
@@ -31,7 +28,7 @@ android {
3128
minSdkVersion 16
3229
targetSdkVersion 27
3330
versionCode 1
34-
versionName "1.0.1"
31+
versionName "1.0.2"
3532
}
3633

3734
compileOptions {
@@ -68,8 +65,6 @@ install {
6865
pom {
6966
project {
7067
packaging 'aar'
71-
groupId publishedGroupId
72-
artifactId artifact
7368

7469
// Add your description here
7570
name libraryName
@@ -142,8 +137,8 @@ bintray {
142137

143138
configurations = ['archives']
144139
pkg {
145-
repo = bintrayRepo
146-
name = bintrayName
140+
repo = "Android-FFmpeg"
141+
name = "android-ffmpeg"
147142
desc = libraryDescription
148143
websiteUrl = siteUrl
149144
vcsUrl = gitUrl
File renamed without changes.
File renamed without changes.
File renamed without changes.

sample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ dependencies {
2828
implementation fileTree(dir: 'libs', include: ['*.jar'])
2929
implementation 'com.android.support:appcompat-v7:27.0.2'
3030

31-
implementation project(':FFmpeg-library')
31+
implementation project(':android-ffmpeg')
3232
}

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include ':sample', ':FFmpeg-library'
1+
include ':sample', ':android-ffmpeg'

0 commit comments

Comments
 (0)