Skip to content

Commit

Permalink
Merge pull request #119 from mepc36/master
Browse files Browse the repository at this point in the history
Fix broken FileProvider paths.
  • Loading branch information
rodrigograca31 committed Feb 13, 2021
2 parents 8dcae69 + 09d4c7a commit c15519e
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
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
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 c15519e

Please sign in to comment.