fix hashs

This commit is contained in:
Alexey Kuznetsov 2017-11-04 12:57:09 +03:00
commit ceecafeff4
2 changed files with 9 additions and 2 deletions

View file

@ -9,7 +9,7 @@ android {
defaultConfig {
applicationId "com.github.axet.audiorecorder"
minSdkVersion 9
targetSdkVersion 24
targetSdkVersion 25
versionCode 211
versionName "3.0.45"
}
@ -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>