project rename
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
group = "me.movenext.simple_intent_receiver"
|
||||
group = "eu.weblibre.simple_intent_receiver"
|
||||
version = "1.0-SNAPSHOT"
|
||||
|
||||
buildscript {
|
||||
@@ -25,7 +25,7 @@ apply plugin: "com.android.library"
|
||||
apply plugin: "kotlin-android"
|
||||
|
||||
android {
|
||||
namespace = "me.movenext.simple_intent_receiver"
|
||||
namespace = "eu.weblibre.simple_intent_receiver"
|
||||
|
||||
compileSdk = 35
|
||||
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="me.movenext.simple_intent_receiver">
|
||||
package="eu.weblibre.simple_intent_receiver">
|
||||
</manifest>
|
||||
|
||||
+3
-3
@@ -1,8 +1,8 @@
|
||||
package me.movenext.simple_intent_receiver
|
||||
package eu.weblibre.simple_intent_receiver
|
||||
|
||||
import io.flutter.plugin.common.BinaryMessenger
|
||||
import me.movenext.simple_intent_receiver.pigeons.IntentEvents
|
||||
import me.movenext.simple_intent_receiver.pigeons.Intent as PigeonIntent
|
||||
import eu.weblibre.simple_intent_receiver.pigeons.IntentEvents
|
||||
import eu.weblibre.simple_intent_receiver.pigeons.Intent as PigeonIntent
|
||||
|
||||
class IntentReceiver(messenger: BinaryMessenger) {
|
||||
private val intentEvents: IntentEvents = IntentEvents(messenger)
|
||||
+2
-2
@@ -1,4 +1,4 @@
|
||||
package me.movenext.simple_intent_receiver
|
||||
package eu.weblibre.simple_intent_receiver
|
||||
|
||||
import android.app.Activity
|
||||
import android.content.Context
|
||||
@@ -9,7 +9,7 @@ import io.flutter.embedding.engine.plugins.FlutterPlugin
|
||||
import io.flutter.embedding.engine.plugins.activity.ActivityAware
|
||||
import io.flutter.embedding.engine.plugins.activity.ActivityPluginBinding
|
||||
import io.flutter.plugin.common.PluginRegistry
|
||||
import me.movenext.simple_intent_receiver.pigeons.Intent as PigeonIntent
|
||||
import eu.weblibre.simple_intent_receiver.pigeons.Intent as PigeonIntent
|
||||
|
||||
class SimpleIntentReceiverPlugin: FlutterPlugin, ActivityAware, PluginRegistry.NewIntentListener {
|
||||
private lateinit var context: Context
|
||||
+1
-1
@@ -2,7 +2,7 @@
|
||||
// See also: https://pub.dev/packages/pigeon
|
||||
@file:Suppress("UNCHECKED_CAST", "ArrayInDataClass")
|
||||
|
||||
package me.movenext.simple_intent_receiver.pigeons
|
||||
package eu.weblibre.simple_intent_receiver.pigeons
|
||||
|
||||
import android.util.Log
|
||||
import io.flutter.plugin.common.BasicMessageChannel
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package me.movenext.simple_intent_receiver
|
||||
package eu.weblibre.simple_intent_receiver
|
||||
|
||||
import io.flutter.plugin.common.MethodCall
|
||||
import io.flutter.plugin.common.MethodChannel
|
||||
|
||||
@@ -6,7 +6,7 @@ plugins {
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "me.movenext.simple_intent_receiver_example"
|
||||
namespace = "eu.weblibre.simple_intent_receiver_example"
|
||||
compileSdk = flutter.compileSdkVersion
|
||||
ndkVersion = flutter.ndkVersion
|
||||
|
||||
@@ -21,7 +21,7 @@ android {
|
||||
|
||||
defaultConfig {
|
||||
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
||||
applicationId = "me.movenext.simple_intent_receiver_example"
|
||||
applicationId = "eu.weblibre.simple_intent_receiver_example"
|
||||
// You can update the following values to match your application needs.
|
||||
// For more information, see: https://flutter.dev/to/review-gradle-config.
|
||||
minSdk = flutter.minSdkVersion
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package me.movenext.simple_intent_receiver_example
|
||||
package eu.weblibre.simple_intent_receiver_example
|
||||
|
||||
import io.flutter.embedding.android.FlutterActivity
|
||||
|
||||
|
||||
@@ -21,9 +21,9 @@ class Intent {
|
||||
dartOut: 'lib/src/pigeons/intent.g.dart',
|
||||
dartOptions: DartOptions(),
|
||||
kotlinOut:
|
||||
'android/src/main/kotlin/me/movenext/simple_intent_receiver/pigeons/Intent.g.kt',
|
||||
'android/src/main/kotlin/eu/weblibre/simple_intent_receiver/pigeons/Intent.g.kt',
|
||||
kotlinOptions: KotlinOptions(
|
||||
package: 'me.movenext.simple_intent_receiver.pigeons',
|
||||
package: 'eu.weblibre.simple_intent_receiver.pigeons',
|
||||
),
|
||||
dartPackageName: 'simple_intent_receiver',
|
||||
),
|
||||
|
||||
@@ -35,7 +35,7 @@ flutter:
|
||||
plugin:
|
||||
platforms:
|
||||
android:
|
||||
package: me.movenext.simple_intent_receiver
|
||||
package: eu.weblibre.simple_intent_receiver
|
||||
pluginClass: SimpleIntentReceiverPlugin
|
||||
|
||||
# To add assets to your plugin package, add an assets section, like this:
|
||||
|
||||
Reference in New Issue
Block a user