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
Expand Up @@ -2,7 +2,7 @@ group 'de.kevlatus.flutter_broadcasts'
version '1.0-SNAPSHOT'

buildscript {
ext.kotlin_version = '1.5.20'
ext.kotlin_version = '1.8.0'
repositories {
google()
jcenter()
Expand All @@ -25,6 +25,7 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
namespace "de.kevlatus.flutter_broadcasts"
compileSdkVersion 31

sourceSets {
Expand All @@ -33,6 +34,10 @@ android {
defaultConfig {
minSdkVersion 24
}

kotlinOptions {
jvmTarget = '1.8'
}
}

dependencies {
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: flutter_broadcasts
name: flutter_broadcasts_4m
description: A plugin for sending and receiving broadcasts with Android intents and iOS notifications.
version: 0.4.0
repository: https://github.com/kevlatus/flutter_broadcasts
version: 0.4.2
repository: https://github.com/4murs/flutter_broadcasts

environment:
sdk: ">=2.12.0 <4.0.0"
Expand Down