Skip to content

Commit 6285c43

Browse files
committed
0.0.6
1 parent bcd5d2a commit 6285c43

File tree

9 files changed

+13
-19
lines changed

9 files changed

+13
-19
lines changed

FFmpegAndroid/FFmpegAndroid.aar

9.07 MB
Binary file not shown.

FFmpegAndroid/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
configurations.maybeCreate("default")
2+
artifacts.add("default", file('FFmpegAndroid.aar'))

app/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ android {
1919
}
2020

2121
dependencies {
22-
compile fileTree(dir: 'libs', include: ['*.jar'])
2322
compile project(':lib')
2423
compile 'com.android.support:appcompat-v7:24.2.0'
25-
}
24+
}

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
<manifest
3+
xmlns:android="http://schemas.android.com/apk/res/android"
34
package="cafe.adriel.androidaudioconverter.sample">
45

56
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

build.gradle

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
1-
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2-
31
buildscript {
42
repositories {
53
jcenter()
64
}
75
dependencies {
86
classpath 'com.android.tools.build:gradle:2.2.0-rc2'
9-
10-
// NOTE: Do not place your application dependencies here; they belong
11-
// in the individual module build.gradle files
127
}
138
}
149

@@ -20,4 +15,4 @@ allprojects {
2015

2116
task clean(type: Delete) {
2217
delete rootProject.buildDir
23-
}
18+
}

lib/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ android {
99
targetSdkVersion 24
1010
versionCode 1
1111
versionName "1.0"
12-
1312
}
1413
buildTypes {
1514
release {
@@ -20,5 +19,5 @@ android {
2019
}
2120

2221
dependencies {
23-
compile 'com.writingminds:FFmpegAndroid:0.3.2'
22+
compile project(':FFmpegAndroid')
2423
}

lib/src/main/AndroidManifest.xml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
1+
<manifest
2+
xmlns:android="http://schemas.android.com/apk/res/android"
23
package="cafe.adriel.androidaudioconverter">
34

4-
<application android:allowBackup="true" android:label="@string/app_name"
5-
android:supportsRtl="true">
5+
<application android:label="@string/app_name"/>
66

7-
</application>
8-
9-
</manifest>
7+
</manifest>

lib/src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<resources>
22
<string name="app_name">AndroidAudioConverter</string>
3-
</resources>
3+
</resources>

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include ':app', ':lib'
1+
include ':app', ':lib', ':FFmpegAndroid'

0 commit comments

Comments
 (0)