Skip to content

Commit

Permalink
Fix FileProvider paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
mepc36 committed Feb 12, 2021
1 parent 8dcae69 commit 09d4c7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/android/CDVInstagramPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ a copy of this software and associated documentation files (the
import android.os.Build;
import android.util.Base64;
import android.util.Log;
import android.support.v4.content.FileProvider;
import androidx.core.content.FileProvider;

@TargetApi(Build.VERSION_CODES.FROYO)
public class CDVInstagramPlugin extends CordovaPlugin {
Expand Down
2 changes: 1 addition & 1 deletion src/android/utils/AssetProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Licensed to the Apache Software Foundation (ASF) under one

package com.vladstirbu.cordova.plugin.utils;

import android.support.v4.content.FileProvider;
import androidx.core.content.FileProvider;

public class AssetProvider extends FileProvider {
// Nothing to do here
Expand Down

0 comments on commit 09d4c7a

Please sign in to comment.