Skip to content

Commit

Permalink
revam
Browse files Browse the repository at this point in the history
  • Loading branch information
this-kin committed Aug 28, 2022
1 parent bc1dfc1 commit 23c2f2b
Show file tree
Hide file tree
Showing 5 changed files with 121 additions and 101 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
apply plugin: 'com.google.gms.google-services'

android {
compileSdkVersion 30
compileSdkVersion 33
ndkVersion '21.3.6528147'

sourceSets {
Expand All @@ -42,7 +42,7 @@ android {
applicationId "com.flutterboyfriend.todey"
minSdkVersion 19
targetSdkVersion 30
// multiDexEnabled true
multiDexEnabled true
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName

Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application
android:name="io.flutter.app.FlutterApplication"
android:usesCleartextTraffic="true"
android:label="Todey"
android:icon="@mipmap/ic_launcher">
<activity
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
ext.kotlin_version = '1.3.50'
ext.kotlin_version = '1.6.10'
repositories {
google()
jcenter()
Expand Down
3 changes: 1 addition & 2 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import 'package:firebase_core/firebase_core.dart';
import 'package:hive_flutter/adapters.dart';
import 'package:todey/constants/color_constants.dart';
import 'package:todey/constants/string_constant.dart';
import 'package:todey/core/routes.dart';
import 'package:todey/data/models/user_data.dart';
import 'package:todey/data/database.dart';
import 'package:todey/core/exports.dart';
Expand Down Expand Up @@ -42,7 +41,7 @@ class _MyAppState extends State<MyApp> {
);
return ScreenUtilInit(
designSize: Size(360, 784),
builder: () {
builder: (__, _) {
return GetMaterialApp(
debugShowCheckedModeBanner: false,
translations: Translation(),
Expand Down
Loading

0 comments on commit 23c2f2b

Please sign in to comment.