Skip to content

Commit

Permalink
final release for POC
Browse files Browse the repository at this point in the history
  • Loading branch information
nghia-t-nguyen committed Dec 3, 2022
1 parent 4a38d2e commit 59ea748
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
apply plugin: 'com.google.gms.google-services'

android {
compileSdkVersion flutter.compileSdkVersion
compileSdkVersion 33
ndkVersion flutter.ndkVersion

compileOptions {
Expand Down
2 changes: 1 addition & 1 deletion app/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.quiz_app">
<application
android:label="quiz_app"
android:label="Pweek: Learn Pohnpeian"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
Expand Down
3 changes: 2 additions & 1 deletion app/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import 'package:flutter/material.dart';
import 'screens/SignUpScreen.dart';


//import 'screens/pages/result_page.dart';
import 'package:firebase_core/firebase_core.dart';

Expand All @@ -15,12 +14,14 @@ Future main() async {

runApp(const MyApp());
}

class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);

@override
Widget build(BuildContext context) {
return const MaterialApp(
debugShowCheckedModeBanner: false,
home: SignUpPage(),
);
}
Expand Down

0 comments on commit 59ea748

Please sign in to comment.