diff --git a/Govt-Billing-React/android/app/capacitor.build.gradle b/Govt-Billing-React/android/app/capacitor.build.gradle index 20e5021..e469a8e 100644 --- a/Govt-Billing-React/android/app/capacitor.build.gradle +++ b/Govt-Billing-React/android/app/capacitor.build.gradle @@ -9,7 +9,6 @@ android { apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle" dependencies { - implementation project(':capacitor-community-admob') implementation project(':capacitor-app') implementation project(':capacitor-haptics') implementation project(':capacitor-keyboard') diff --git a/Govt-Billing-React/android/capacitor.settings.gradle b/Govt-Billing-React/android/capacitor.settings.gradle index 20211c9..73a7823 100644 --- a/Govt-Billing-React/android/capacitor.settings.gradle +++ b/Govt-Billing-React/android/capacitor.settings.gradle @@ -2,9 +2,6 @@ include ':capacitor-android' project(':capacitor-android').projectDir = new File('../node_modules/@capacitor/android/capacitor') -include ':capacitor-community-admob' -project(':capacitor-community-admob').projectDir = new File('../node_modules/@capacitor-community/admob/android') - include ':capacitor-app' project(':capacitor-app').projectDir = new File('../node_modules/@capacitor/app/android') diff --git a/Govt-Billing-React/android/gradle/wrapper/gradle-wrapper.properties b/Govt-Billing-React/android/gradle/wrapper/gradle-wrapper.properties index 761b8f0..0b2d9ab 100644 --- a/Govt-Billing-React/android/gradle/wrapper/gradle-wrapper.properties +++ b/Govt-Billing-React/android/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-all.zip networkTimeout=10000 zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/Govt-Billing-React/index.html b/Govt-Billing-React/index.html index d4d35b6..72c8fd4 100644 --- a/Govt-Billing-React/index.html +++ b/Govt-Billing-React/index.html @@ -1,56 +1,45 @@ - - - Ionic App - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - + + + + Ionic App + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + \ No newline at end of file diff --git a/Govt-Billing-React/src/components/Files/Files.tsx b/Govt-Billing-React/src/components/Files/Files.tsx index 9d18dfe..3fdde0d 100644 --- a/Govt-Billing-React/src/components/Files/Files.tsx +++ b/Govt-Billing-React/src/components/Files/Files.tsx @@ -175,7 +175,7 @@ const Files: React.FC<{ isOpen={showAlert1} onDidDismiss={() => setShowAlert1(false)} header="Delete file" - message={"Do you want to delete the " + currentKey + " file?"} + message={"Do you want to delete the file:" + '"' + currentKey + '"' + " file?"} buttons={[ { text: "No", role: "cancel" }, { diff --git a/Govt-Billing-React/src/components/Menu/Menu.tsx b/Govt-Billing-React/src/components/Menu/Menu.tsx index 392becf..5222e0f 100644 --- a/Govt-Billing-React/src/components/Menu/Menu.tsx +++ b/Govt-Billing-React/src/components/Menu/Menu.tsx @@ -180,7 +180,7 @@ const Menu: React.FC<{ onDidDismiss={() => setShowAlert1(false)} header="Alert Message" message={ - "Cannot update " + getCurrentFileName() + " file!" + "Cannot update " + '"' +getCurrentFileName()+'"' + " file!" } buttons={["Ok"]} /> @@ -190,9 +190,9 @@ const Menu: React.FC<{ onDidDismiss={() => setShowAlert2(false)} header="Save" message={ - "File " + - getCurrentFileName() + - " updated successfully" + "File: " + + '"' +getCurrentFileName()+'"' + + " updated successfully" } buttons={["Ok"]} /> @@ -219,9 +219,9 @@ const Menu: React.FC<{ onDidDismiss={() => setShowAlert4(false)} header="Save As" message={ - "File " + - getCurrentFileName() + - " saved successfully" + "File: " + + '"' +getCurrentFileName()+'"' + + " saved successfully" } buttons={["Ok"]} />