Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Android SDK version to avoid duplicate class error #19

Merged
merged 3 commits into from
Dec 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

Capacitor community plugin for firebase remote config.

## Capacitor Compatibility

Version 0.6.0+ is compatible with Capacitor 4
Please use 0.5.2 for Capacitor 3

## Installation

To use npm
Expand Down Expand Up @@ -39,7 +44,6 @@ public class MainActivity extends BridgeActivity {
this.init(
savedInstanceState,
new ArrayList<Class<? extends Plugin>>() {

{
// Additional plugins you've installed go here
// Ex: add(TotallyAwesomePlugin.class);
Expand All @@ -49,6 +53,7 @@ public class MainActivity extends BridgeActivity {
);
}
}

```

## Configuration
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ dependencies {
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"

implementation 'com.google.firebase:firebase-config:19.1.4'
implementation 'com.google.firebase:firebase-config:19.2.0'
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@joinflux/firebase-remote-config",
"version": "0.5.2",
"version": "0.6.0",
"description": "A native plugin for firebase remote config",
"homepage": "https://github.com/joinflux/firebase-remote-config",
"main": "dist/esm/index.js",
Expand Down