Merge branch 'audiorecorder-3.0.46'

This commit is contained in:
Alexey Kuznetsov 2017-11-04 12:57:18 +03:00
commit 7e469f8be1
2 changed files with 11 additions and 4 deletions

View file

@ -9,9 +9,9 @@ android {
defaultConfig {
applicationId "com.github.axet.audiorecorder"
minSdkVersion 9
targetSdkVersion 24
versionCode 211
versionName "3.0.45"
targetSdkVersion 25
versionCode 212
versionName "3.0.46"
}
signingConfigs {
release {
@ -55,5 +55,6 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.github.axet:android-audio-library:1.0.49' // compile project(':android-audio-library')
// compile 'com.github.axet:android-audio-library:1.0.49'
compile project(':android-audio-library')
}

View file

@ -64,6 +64,12 @@
<action android:name="android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE" />
</intent-filter>
</receiver>
<provider
android:name="com.github.axet.audiolibrary.services.RecordingContentProvider"
android:authorities="com.github.axet.audiorecorder"
android:exported="false"
android:grantUriPermissions="true"></provider>
</application>
</manifest>