You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I searched my code, but it does'nt have the phrase Widget.Support.CoordinatorLayout. I'm starting from the google sample library: https://github.com/googlesamples/mlkit/
I cloned it and added in your library. At some date I'd like to add in a camera button, trim it and then continue from there.
Update:
I copied com.gowtham into a separate directory. I imported the module into the google sample project. I added a camera button on the front screen. It now crashes the app inside this code:
//Java
ActivityResultLauncher startForResult = registerForActivityResult(
new ActivityResultContracts.StartActivityForResult(),
result -> {
if (result.getResultCode() == Activity.RESULT_OK &&
result.getData() != null) {
Uri uri = Uri.parse(TrimVideo.getTrimmedVideoPath(result.getData()));
Log.d(TAG, "Trimmed path:: " + uri);
} else
LogMessage.v("videoTrimResultLauncher data is null");
});
I tried to ensure the libraries are the same version. Still same issue.
The text was updated successfully, but these errors were encountered:
When I add the line:
implementation 'com.github.a914-gowtham:android-video-trimmer:1.7.3'
and
maven { url 'https://jitpack.io' }
I get the error:
AAPT: error: resource style/Widget.Support.CoordinatorLayout not found.
error: failed linking references.
The implementation line is the issue.
A google search brings up the following answer on StackOverflow:
https://stackoverflow.com/questions/52566567/resource-style-widget-design-coordinatorlayout-not-found-after-updating-to-api-2
I searched my code, but it does'nt have the phrase Widget.Support.CoordinatorLayout. I'm starting from the google sample library:
https://github.com/googlesamples/mlkit/
I cloned it and added in your library. At some date I'd like to add in a camera button, trim it and then continue from there.
Update:
I copied com.gowtham into a separate directory. I imported the module into the google sample project. I added a camera button on the front screen. It now crashes the app inside this code:
//Java
ActivityResultLauncher startForResult = registerForActivityResult(
new ActivityResultContracts.StartActivityForResult(),
result -> {
if (result.getResultCode() == Activity.RESULT_OK &&
result.getData() != null) {
Uri uri = Uri.parse(TrimVideo.getTrimmedVideoPath(result.getData()));
Log.d(TAG, "Trimmed path:: " + uri);
I tried to ensure the libraries are the same version. Still same issue.
The text was updated successfully, but these errors were encountered: