Skip to content

Commit

Permalink
Reworked home page
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardodebellini committed Oct 26, 2024
1 parent 92ebb76 commit 1010c07
Show file tree
Hide file tree
Showing 38 changed files with 91,512 additions and 91,359 deletions.
5 changes: 2 additions & 3 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
plugins {
id "com.android.application"
// START: FlutterFire Configuration
id 'com.google.gms.google-services'
// END: FlutterFire Configuration

id "kotlin-android"
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
id "dev.flutter.flutter-gradle-plugin"
Expand Down Expand Up @@ -37,6 +35,7 @@ android {
}

defaultConfig {
multiDexEnabled true
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "com.riccardodebellini.mybookshelf"
// You can update the following values to match your application needs.
Expand Down
30 changes: 0 additions & 30 deletions android/app/google-services.json

This file was deleted.

23 changes: 22 additions & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,28 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
<uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT" />
<application
android:label="mybookshelf"
android:label="My.Bookshelf"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<receiver
android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationReceiver"
android:exported="false" />
<receiver
android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationBootReceiver"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
<action android:name="com.htc.intent.action.QUICKBOOT_POWERON" />
</intent-filter>
</receiver>
<receiver
android:name="com.dexterous.flutterlocalnotifications.ActionBroadcastReceiver"
android:exported="false" />
<activity
android:name=".MainActivity"
android:exported="true"
Expand All @@ -16,6 +36,7 @@
the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues
to determine the Window background behind the Flutter UI. -->

<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
Expand Down
2 changes: 1 addition & 1 deletion build/web/.last_build_id
Original file line number Diff line number Diff line change
@@ -1 +1 @@
dc8f757e2b406cb03db38f2d8ab85c81
309b0ca34262b8503b61880a5e0ec018
Loading

0 comments on commit 1010c07

Please sign in to comment.