AndroidAudioConverter
AndroidAudioConverter copied to clipboard
Failed to resolve: com.github.adrielcafe:AndroidAudioConverter:0.0.8
i Can`t get it , what i shoud do??
Hi @feaverfei. Did you add this snippet into app/build.gradle?
android {
// ...
}
repositories {
maven { url "https://jitpack.io" }
}
I also got this problem and I already added repositories { maven { url "https://jitpack.io" } }
The same thing - Error:Could not find com.github.adrielcafe:AndroidAudioConverter:0.0.8.
Follow the instructions at https://jitpack.io/
- Maven URL must be supplemented to the root-level
build.gradle - Dependency is to be added to module
build.gradle
Can someone tell me about this error
FFmpeg is not loaded HELP!!!
Run Project Error Installation failed with message INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113. It is possible that this issue is resolved by uninstalling an existing version of the apk if it is present, and then re-installing. HELP !!!
I meet this problem too . The solution is on follows: just put these
repositories { maven { url "https://jitpack.io" } }
and compile 'com.github.adrielcafe:AndroidAudioConverter:0.0.8'
in your app/build.gradle
thank you
2017-07-19 9:23 GMT+07:00 zhaomeng0001 [email protected]:
I meet this problem too . The solution is on follows: just put these
repositories { maven { url "https://jitpack.io" } }
and compile 'com.github.adrielcafe:AndroidAudioConverter:0.0.8'
in your app/build.gradle
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/adrielcafe/AndroidAudioConverter/issues/2#issuecomment-316253778, or mute the thread https://github.com/notifications/unsubscribe-auth/AOcDwvwH1Bo20WmtvMbChC59-HHj3Btpks5sPWiqgaJpZM4KDmJb .
conver mp3 to mp4 success , can not open file mp3 ?
2017-07-19 13:54 GMT+07:00 duy nguyễn xuân [email protected]:
thank you
2017-07-19 9:23 GMT+07:00 zhaomeng0001 [email protected]:
I meet this problem too . The solution is on follows: just put these
repositories { maven { url "https://jitpack.io" } }
and compile 'com.github.adrielcafe:AndroidAudioConverter:0.0.8'
in your app/build.gradle
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/adrielcafe/AndroidAudioConverter/issues/2#issuecomment-316253778, or mute the thread https://github.com/notifications/unsubscribe-auth/AOcDwvwH1Bo20WmtvMbChC59-HHj3Btpks5sPWiqgaJpZM4KDmJb .
For anyone else having dependency issues, it is a very common occurrence with beta or canary versions of AS3 that maven libs don't work properly. I've encountered this in the latest Beta of 3.1, and when I rolled back to 3.0.1 everything worked just fine.
Add "www" to the jitpack url. It worked for me. I'm using react native 0.60.5
maven { url("https://www.jitpack.io") }