diff --git a/CHANGELOG.md b/CHANGELOG.md index ea4e96c..3bb0158 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ # CHANGELOG +## 2.0.1 +* Add Android namespace ## 2.0.0 * Fix iPad bug diff --git a/android/build.gradle b/android/build.gradle index b187a15..f0ed8d0 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -22,6 +22,10 @@ rootProject.allprojects { apply plugin: 'com.android.library' android { + + if (project.android.hasProperty("namespace")) { + namespace 'com.example.fluttershare' + } compileSdkVersion 29 defaultConfig { diff --git a/pubspec.yaml b/pubspec.yaml index bcf0175..375d500 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_share description: Simple way to share message, links or files from your flutter app for Android and IOS (Enter to see some gifs). -version: 2.0.0 +version: 2.0.1 homepage: https://github.com/lubritto/flutter_share dependencies: @@ -23,4 +23,4 @@ dev_dependencies: environment: sdk: '>=2.12.0 <3.0.0' - flutter: '>=1.10.0' \ No newline at end of file + flutter: '>=1.10.0'