-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace it with a base64 encoded password in the database for now i know it's a bad practice. I will be implementing an encrypted key-value storage solution later with EncryptedSharedPreferences. this is a hotfix for the many people that can't access the application because of this oversight.
- Loading branch information
1 parent
ce3089c
commit 5fa083f
Showing
18 changed files
with
45 additions
and
46 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,16 @@ | ||
package di | ||
|
||
import com.liftric.kvault.KVault | ||
import org.koin.core.module.Module | ||
import org.koin.dsl.module | ||
import utils.CredentialManager | ||
import utils.PlatformUtils | ||
|
||
val ApplicationModule: ( | ||
credentialManger: CredentialManager, | ||
kvault: KVault, | ||
platformUtils: PlatformUtils | ||
) -> Module = { credentialManager, kvault, platformUtils -> | ||
) -> Module = { credentialManager, platformUtils -> | ||
module { | ||
single { platformUtils } | ||
single { credentialManager } | ||
single { kvault } | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,15 +8,15 @@ <h2>Disclaimer</h2> | |
<h3>This App, is an unofficial port of the <a href="https://play.google.com/store/apps/details?id=app.progres.webetu">Progres WebEtu</a> Mobile app. thus we (the developer(s)) don't have access to almost any data collected and/or stored by the Progres APIs made by DRDN.</h3> | ||
<h2>Data collection</h2> | ||
<h3>Other than any data collected by the already mentioned Progres APIs used, the app the only collects crash logs, performance metrics and usage analytics.</h3> | ||
<h3>One note being that the app, for refreshing user tokens and provide a better experience, does save the user's id and password in an encrypted manner in it's files directory.</h3> | ||
<h3>One note being that the app, for refreshing user tokens and provide a better experience, does save the user's id and password in an encoded manner in its Database. This is subject to change in the future.</h3> | ||
<h3>If you want to check how the data coming from the official Progres APIs is being processed on your device, check the app's source code <a href="https://github.com/abdallahmehiz/progres">here</a>.</h3> | ||
<h2>Changes to this policy</h2> | ||
<h3>While we currently do not collect any data, we hold the right to change this policy at any time only for the purpose of providing a better user experience.</h3> | ||
<h3>Users who are already using this app will be notified in-app of such updates and are encouraged to revisit this page regularly to check for any changes.</h3> | ||
<h2>Contact us</h2> | ||
<h3>If you have any questions or concerns about this Privacy Policy, please contact us at <a href="mailto:[email protected]">[email protected]</a></h3> | ||
<h2>Effective Date</h2> | ||
<h3>This Privacy Policy is effective as of Oct 12th 2024.</h3> | ||
<h3>This Privacy Policy is effective as of Oct 15th 2024.</h3> | ||
<h3>By using Progres, you acknowledge that you have read and understood this Privacy Policy.</h3> | ||
</body> | ||
</html> |
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
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER TABLE UserAuthTable ADD COLUMN password64 TEXT; |
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