Skip to content
Open
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 android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'io.flutterfastkit.fk_user_agent'
version '2.0.0'
version '2.1.1'

buildscript {
repositories {
Expand All @@ -22,6 +22,11 @@ rootProject.allprojects {
apply plugin: 'com.android.library'

android {
// Conditional for compatibility with AGP <4.2.
if (project.android.hasProperty("namespace")) {
namespace 'io.flutterfastkit.fk_user_agent'
}

compileSdkVersion 30

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: fk_user_agent
description: Retrieve Android/iOS device user agents in Flutter.
version: 2.1.0
version: 2.1.1
homepage: https://github.com/flutter-fast-kit/fk_user_agent

environment:
Expand Down