-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
44 changed files
with
1,980 additions
and
2,309 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ node_modules | |
plugins | ||
platforms | ||
.idea | ||
package-lock.json | ||
package-lock.json | ||
tqw.keystore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,44 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<widget id="com.rn0x.altaqwaa" version="1.2.0" | ||
xmlns="http://www.w3.org/ns/widgets" | ||
xmlns:cdv="http://cordova.apache.org/ns/1.0"> | ||
<widget id="com.rn0x.altaqwaa" version="1.2.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | ||
<name>التقوى</name> | ||
<description>تطبيق إسلامي سهل الإستخدام و جامع للكثير من الميزات التي يحتاجها المسلم في يومه</description> | ||
<author email="[email protected]" href="https://altaqwaa.org"> | ||
Altaqwaa | ||
</author> | ||
<author email="[email protected]" href="https://altaqwaa.org">Altaqwaa</author> | ||
<content src="index.html" /> | ||
|
||
<!-- Allow-intent settings --> | ||
<allow-intent href="http://*/*" /> | ||
<allow-intent href="https://*/*" /> | ||
|
||
<!-- Preferences --> | ||
<preference name="AndroidXEnabled" value="true" /> | ||
<preference name="KeepRunning" value="true" /> | ||
<preference name="loglevel" value="DEBUG" /> | ||
<preference name="ErrorUrl" value="error.html" /> | ||
<preference name="Fullscreen" value="false" /> | ||
<preference name="DisallowOverscroll" value="true" /> | ||
<preference name="StatusBarOverlaysWebView" value="false" /> | ||
<preference name="StatusBarBackgroundColor" value="#2e3338" /> | ||
<preference name="NavigationBarLight" value="true" /> | ||
<preference name="Orientation" value="portrait" /> | ||
<preference name="BackgroundColor" value="#2e3338" /> | ||
<preference name="HideKeyboardFormAccessoryBar" value="true" /> | ||
<preference name="NavigationBarBackgroundColor" value="#232527" /> | ||
<preference name="android-compileSdkVersion" value="32" /> | ||
<preference name="android-compileSdkVersion" value="33" /> | ||
<preference name="SplashScreenBackgroundColor" value="#2e3338" /> | ||
<!-- StatusBar settings --> | ||
<preference name="StatusBarBackgroundColor" value="#2e3338" /> | ||
<preference name="StatusBarOverlaysWebView" value="false" /> | ||
|
||
<!-- Android platform settings --> | ||
<platform name="android"> | ||
|
||
<!-- Icons --> | ||
<icon density="ldpi" src="resources/android/icon/drawable-ldpi-icon.png" /> | ||
<icon density="mdpi" src="resources/android/icon/drawable-mdpi-icon.png" /> | ||
<icon density="hdpi" src="resources/android/icon/drawable-hdpi-icon.png" /> | ||
<icon density="xhdpi" src="resources/android/icon/drawable-xhdpi-icon.png" /> | ||
<icon density="xxhdpi" src="resources/android/icon/drawable-xxhdpi-icon.png" /> | ||
<icon density="xxxhdpi" src="resources/android/icon/drawable-xxxhdpi-icon.png" /> | ||
|
||
<!-- Splash Screen settings --> | ||
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="resources/splash.png" /> | ||
<preference name="AndroidWindowSplashScreenBackground" value="#2e3338" /> | ||
</platform> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
const { exec } = require('child_process'); | ||
|
||
exec('keytool -genkey -v -keystore ./debug.keystore -alias "rn0x" -storepass "11223344" -keypass "11223344" -keyalg RSA -keysize 2048 -dname "CN=rn0x, OU=altaqwaa, O=altaqwaa, L=makkah, ST=makkah, C=sa"', (error, stdout, stderr) => { | ||
if (error) { | ||
console.error(`Error: ${error.message}`); | ||
return; | ||
} | ||
console.log(`stdout: ${stdout}`); | ||
console.error(`stderr: ${stderr}`); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "com.rn0x.altaqwaa", | ||
"displayName": "التقوى", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "تطبيق إسلامي سهل الإستخدام و جامع للكثير من الميزات التي يحتاجها المسلم في يومه", | ||
"main": "index.js", | ||
"scripts": { | ||
|
@@ -11,29 +11,25 @@ | |
"bundle": "cordova build android --release -- --packageTypjetifiere=bundle", | ||
"android": "cordova platform add android@latest", | ||
"clear": "rm -rf ./node_modules && cordova platforms rm android && npm cache clean --force && npm i && cordova platform add android@latest", | ||
"keytool": "keytool -genkey -v -keystore ./debug.keystore -alias 'rn0x' -storepass '11223344' -keypass '11223344' -keyalg RSA -keysize 2048 -dname 'CN=rn0x, OU=altaqwaa, O=altaqwaa, L=makkah, ST=makkah, C=sa'" | ||
"keytool": "node keytool.js" | ||
}, | ||
"author": { | ||
"name": "Ryan Almalki", | ||
"email": "[email protected]", | ||
"url": "https://www.altaqwaa.org" | ||
}, | ||
"license": "GPL-3.0", | ||
"devDependencies": { | ||
"dependencies": { | ||
"browser-sync": "^2.28.3", | ||
"cordova": "^11.1.0", | ||
"cordova-android": "^11.0.0", | ||
"cordova-clipboard": "^1.3.0", | ||
"cordova-plugin-android-permissions": "^1.1.5", | ||
"cordova-plugin-device": "^2.1.0", | ||
"cordova-plugin-dialogs": "^2.0.2", | ||
"cordova-plugin-downloader": "github:asadaries/cordova-plugin-downloader", | ||
"cordova-plugin-geolocation": "^4.1.0", | ||
"cordova-plugin-navigationbar-color": "^0.1.0", | ||
"cordova-plugin-network-information": "github:apache/cordova-plugin-network-information", | ||
"cordova-plugin-statusbar": "^3.0.0", | ||
"cordova-plugin-vibration": "^3.1.1", | ||
"phonegap-plugin-mobile-accessibility": "github:phonegap/phonegap-mobile-accessibility" | ||
"cordova-plugin-vibration": "^3.1.1" | ||
}, | ||
"cordova": { | ||
"plugins": { | ||
|
@@ -53,5 +49,11 @@ | |
"platforms": [ | ||
"android" | ||
] | ||
}, | ||
"devDependencies": { | ||
"cordova-android": "^12.0.1", | ||
"cordova-plugin-downloader": "github:asadaries/cordova-plugin-downloader", | ||
"cordova-plugin-network-information": "github:apache/cordova-plugin-network-information", | ||
"phonegap-plugin-mobile-accessibility": "github:phonegap/phonegap-mobile-accessibility" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.