File tree Expand file tree Collapse file tree 10 files changed +37
-291
lines changed
java/flutter/overlay/window/flutter_overlay_window Expand file tree Collapse file tree 10 files changed +37
-291
lines changed Original file line number Diff line number Diff line change 44# This file should be version controlled and should not be manually edited.
55
66version:
7- revision: c860cba910319332564e1e9d470a17074c1f2dfd
8- channel: stable
7+ revision: "abb292a07e20d696c4568099f918f6c5f330e6b0"
8+ channel: " stable"
99
1010project_type: plugin
11+
12+ # Tracks metadata for the flutter migrate command
13+ migration:
14+ platforms:
15+ - platform: root
16+ create_revision: abb292a07e20d696c4568099f918f6c5f330e6b0
17+ base_revision: abb292a07e20d696c4568099f918f6c5f330e6b0
18+ - platform: android
19+ create_revision: abb292a07e20d696c4568099f918f6c5f330e6b0
20+ base_revision: abb292a07e20d696c4568099f918f6c5f330e6b0
21+
22+ # User provided section
23+
24+ # List of Local paths (relative to this file) that should be
25+ # ignored by the migrate tool.
26+ #
27+ # Files that are not part of the templates will be ignored by default.
28+ unmanaged_files:
29+ - 'lib/main.dart'
30+ - 'ios/Runner.xcodeproj/project.pbxproj'
Original file line number Diff line number Diff line change 66.DS_Store
77/build
88/captures
9+ .cxx
Original file line number Diff line number Diff line change 1- group ' com.example .flutter_overlay_window'
1+ group ' flutter.overlay.window .flutter_overlay_window'
22version ' 1.0'
33
44buildscript {
@@ -8,7 +8,7 @@ buildscript {
88 }
99
1010 dependencies {
11- classpath ' com.android.tools.build:gradle:7.4 .0'
11+ classpath ' com.android.tools.build:gradle:7.3 .0'
1212 }
1313}
1414
@@ -22,7 +22,11 @@ rootProject.allprojects {
2222apply plugin : ' com.android.library'
2323
2424android {
25- compileSdkVersion 31
25+ if (project. android. hasProperty(" namespace" )) {
26+ namespace ' flutter.overlay.window.flutter_overlay_window'
27+ }
28+
29+ compileSdk 34
2630
2731 compileOptions {
2832 sourceCompatibility JavaVersion . VERSION_1_8
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- <manifest xmlns : android =" http://schemas.android.com/apk/res/android" package =" com.example.flutter_overlay_window" >
2- <uses-permission android : name =" android.permission.FOREGROUND_SERVICE" />
3- <uses-permission android : name =" android.permission.WAKE_LOCK" />
4- <uses-permission android : name =" android.permission.SYSTEM_ALERT_WINDOW" />
5- </manifest >
1+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
2+ package =" flutter.overlay.window.flutter_overlay_window" >
3+ <uses-permission android : name =" android.permission.FOREGROUND_SERVICE" />
4+ <uses-permission android : name =" android.permission.WAKE_LOCK" />
5+ <uses-permission android : name =" android.permission.SYSTEM_ALERT_WINDOW" />
6+ </manifest >
Original file line number Diff line number Diff line change 2727import androidx .annotation .RequiresApi ;
2828import androidx .core .app .NotificationCompat ;
2929
30- import com . example .flutter_overlay_window .R ;
30+ import flutter . overlay . window .flutter_overlay_window .R ;
3131
3232import java .util .Timer ;
3333import java .util .TimerTask ;
Original file line number Diff line number Diff line change 11package flutter .overlay .window .flutter_overlay_window ;
22
3-
43import android .view .Gravity ;
54import android .view .WindowManager ;
65import androidx .core .app .NotificationCompat ;
You can’t perform that action at this time.
0 commit comments