Skip to content

Commit f896428

Browse files
authored
Merge pull request #26 from webreinvent/feature/Task-1113-integrate-notifications
Feature -> Develop | Task-1113 integrate notifications
2 parents 7d2a730 + 3d0432c commit f896428

35 files changed

+2500
-107
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ For More Info Please Check: [docs.vaah.dev/vaahflutter](https://docs.vaah.dev/va
1111
Project requires Dart and flutter versions:
1212

1313
```yaml
14-
sdk: ">=2.19.2"
15-
flutter: ">=3.7.3"
14+
sdk: ">=2.19.6"
15+
flutter: ">=3.7.11"
1616
```
1717
1818
To change minimum requirement of dart and flutter change the `sdk and flutter` versions under `environment` in the `pubspec.yaml` file.

android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,5 @@
3737
android:name="flutterEmbedding"
3838
android:value="2" />
3939
</application>
40+
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
4041
</manifest>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// Generated file.
2+
//
3+
// If you wish to remove Flutter's multidex support, delete this entire file.
4+
//
5+
// Modifications to this file should be done in a copy under a different name
6+
// as this file may be regenerated.
7+
8+
package io.flutter.app;
9+
10+
import android.app.Application;
11+
import android.content.Context;
12+
import androidx.annotation.CallSuper;
13+
import androidx.multidex.MultiDex;
14+
15+
/**
16+
* Extension of {@link android.app.Application}, adding multidex support.
17+
*/
18+
public class FlutterMultiDexApplication extends Application {
19+
@Override
20+
@CallSuper
21+
protected void attachBaseContext(Context base) {
22+
super.attachBaseContext(base);
23+
MultiDex.install(this);
24+
}
25+
}
Loading
Loading
Loading
Loading
Loading

ios/Podfile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
# platform :ios, '11.0'
2+
platform :ios, '13.0'
33

44
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
@@ -37,8 +37,5 @@ end
3737
post_install do |installer|
3838
installer.pods_project.targets.each do |target|
3939
flutter_additional_ios_build_settings(target)
40-
target.build_configurations.each do |config|
41-
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
42-
end
4340
end
4441
end

0 commit comments

Comments
 (0)