├── .editorconfig
├── .eslintignore
├── .eslintrc.js
├── .gitignore
├── .npmignore
├── .prettierignore
├── .prettierrc
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── package-lock.json
├── package.json
└── src
├── .vuepress
├── components
│ ├── AuroraChangelogs.vue
│ ├── ContactsPage.vue
│ ├── DonationPage.vue
│ ├── DownloadButtons.vue
│ ├── DownloadPage.vue
│ ├── ReleaseDate.vue
│ ├── ServerTable.vue
│ └── UpiMobileButton.vue
├── config.js
├── config
│ ├── navBar.js
│ ├── navBarDE.js
│ ├── plugins.js
│ ├── sideBar.js
│ └── sideBarDE.js
├── constants.js
├── enhanceApp.js
├── public
│ ├── CNAME
│ ├── assets
│ │ ├── Disqu3mirroir.webp
│ │ ├── aab_format-2x.webp
│ │ ├── apk_splits_tree-2x.webp
│ │ ├── auroraoss_banner1200x680.png
│ │ ├── auroraoss_update_banner1200x680.png
│ │ ├── austin.webp
│ │ ├── bitcoinbutton.webp
│ │ ├── btcashbutton.webp
│ │ ├── cylance.webp
│ │ ├── etherumbutton.webp
│ │ ├── fdroidrepo.webp
│ │ ├── iacobionut.webp
│ │ ├── icon_danger.svg
│ │ ├── icon_tip.svg
│ │ ├── icon_warning.svg
│ │ ├── liberapaybutton.webp
│ │ ├── matt.webp
│ │ ├── paypalbutton.webp
│ │ ├── radek.webp
│ │ ├── rajeev.webp
│ │ ├── screenshots_store.webp
│ │ ├── shanetheawesome.webp
│ │ ├── snoopalex.webp
│ │ ├── storebanner1200x680.png
│ │ ├── sunny.webp
│ │ ├── tg-auroradroid-qr.webp
│ │ ├── tg-auroraofficial-qr.webp
│ │ ├── tg-auroraot-qr.webp
│ │ ├── tg-aurorasupport-qr.webp
│ │ ├── undraw_android.png
│ │ ├── undraw_authentication.png
│ │ ├── undraw_authentication.svg
│ │ ├── undraw_questions.png
│ │ ├── undraw_roadmap.png
│ │ ├── undraw_roadmap.svg
│ │ ├── undraw_server_status.png
│ │ ├── undraw_server_status.svg
│ │ ├── undraw_troubleshooting.png
│ │ ├── undraw_troubleshooting.svg
│ │ ├── upibutton.webp
│ │ ├── upiqrcode.webp
│ │ ├── whyorean.webp
│ │ ├── wiki_banner1200x680.png
│ │ └── ziemowit.webp
│ ├── favicon.ico
│ ├── icons
│ │ ├── app_warden.webp
│ │ ├── apple-touch-icon-152x152.webp
│ │ ├── aurora_droid.webp
│ │ ├── aurora_store.webp
│ │ ├── aurora_wallpapers.webp
│ │ ├── aurora_wiki.webp
│ │ ├── auroralogo.svg
│ │ ├── auroralogo.webp
│ │ ├── disclaimer_icon.png
│ │ ├── maskable_icon_x128.png
│ │ ├── maskable_icon_x192.png
│ │ ├── maskable_icon_x384.png
│ │ ├── maskable_icon_x48.png
│ │ ├── maskable_icon_x512.png
│ │ ├── maskable_icon_x72.png
│ │ ├── maskable_icon_x96.png
│ │ ├── msapplication-icon-144x144.webp
│ │ ├── policy_icon.png
│ │ ├── safari-pinned-tab.svg
│ │ ├── tabler-icon-book.png
│ │ ├── tabler-icon-bookmark.png
│ │ ├── tabler-icon-download.png
│ │ ├── tabler-icon-info-circle.png
│ │ ├── tabler-icon-messages.png
│ │ ├── tabler-icon-user.png
│ │ ├── tabler-icon-users.png
│ │ └── tos_icon.png
│ └── manifest.json
├── store
│ └── index.js
├── styles
│ ├── animate.css
│ ├── index.styl
│ ├── palette.styl
│ └── sweetalert2.css
└── theme
│ ├── components
│ ├── AlgoliaSearchBox.vue
│ ├── DarkThemeSwitcher.vue
│ ├── Home.vue
│ ├── Navbar.vue
│ └── Sidebar.vue
│ └── index.js
├── contact
└── README.md
├── contribution
├── BCH.md
├── BTC.md
├── ETH.md
├── README.md
└── UPI.md
├── de
├── contact
│ └── README.md
├── contribution
│ ├── BCH.md
│ ├── BTC.md
│ ├── ETH.md
│ ├── README.md
│ └── UPI.md
├── download
│ ├── AppWarden.md
│ ├── AuroraDroid.md
│ ├── AuroraStore
│ │ ├── README.md
│ │ ├── disclaimer.md
│ │ ├── policy.md
│ │ └── terms-of-service.md
│ ├── AuroraWallpapers.md
│ └── README.md
├── faq
│ ├── README.md
│ └── site-policy.md
├── guides
│ ├── anonymous-logins.md
│ ├── roadmap.md
│ ├── server-status.md
│ ├── system-app.md
│ ├── troubleshooting.md
│ └── wiki-home.md
└── index.md
├── download
├── AppWarden.md
├── AuroraDroid.md
├── AuroraStore
│ ├── README.md
│ ├── disclaimer.md
│ ├── policy.md
│ └── terms-of-service.md
├── AuroraWallpapers.md
└── README.md
├── faq
├── README.md
└── site-policy.md
├── guides
├── android-apps.md
├── anonymous-logins.md
├── roadmap.md
├── server-status.md
├── system-app.md
├── troubleshooting.md
└── wiki-home.md
└── index.md
/.editorconfig:
--------------------------------------------------------------------------------
1 | # EditorConfig is awesome: https://EditorConfig.org
2 |
3 | # top-most EditorConfig file
4 | root = true
5 |
6 | [*]
7 | indent_style = space
8 | indent_size = 2
9 | end_of_line = lf
10 | charset = utf-8
11 | trim_trailing_whitespace = true
12 | insert_final_newline = true
13 |
14 | [*.vue,styl]
15 | indent_style = tab
16 |
--------------------------------------------------------------------------------
/.eslintignore:
--------------------------------------------------------------------------------
1 | # Markdown content
2 | contact
3 | contribution
4 | download
5 | faq
6 | guides
7 | index.md
8 |
9 | # Vuepress
10 | dist
11 | !.vuepress
12 | ServerTable.vue
13 |
14 | # Language folders
15 | de
--------------------------------------------------------------------------------
/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | env: {
3 | browser: true,
4 | es6: true,
5 | },
6 |
7 | extends: [
8 | "vuepress",
9 | "prettier"
10 | ],
11 |
12 | globals: {
13 | Atomics: "readonly",
14 | SharedArrayBuffer: "readonly",
15 | },
16 |
17 | parserOptions: {
18 | ecmaVersion: 2018,
19 | parser: "babel-eslint",
20 | sourceType: "module",
21 | },
22 |
23 | rules: {
24 | "prettier/prettier": [
25 | "error",
26 | {
27 | endOfLine: "auto",
28 | },
29 | ],
30 | "import/no-unresolved": [
31 | 2,
32 | {
33 | ignore: [
34 | "^@",
35 | ],
36 | },
37 | ],
38 | },
39 |
40 | plugins: [
41 | "vue",
42 | "prettier",
43 | "markdown",
44 | ],
45 | }
46 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # VSCode stuff
2 | .vscode
3 |
4 | # Node
5 | node_modules
6 |
7 | # Planned stuff for .vuepress/components
8 | misc
9 |
10 | # Local stuff for build testing
11 | dist
--------------------------------------------------------------------------------
/.npmignore:
--------------------------------------------------------------------------------
1 | pids
2 | logs
3 | node_modules
4 | npm-debug.log
5 | coverage/
6 | run
7 | dist
8 | .DS_Store
9 | .nyc_output
10 | .basement
11 | config.local.js
12 | basement_dist
13 |
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
1 | dist
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "tabWidth": 4,
3 | "useTabs": true,
4 | "printWidth": 120,
5 | "trailingComma": "es5",
6 | "bracketSpacing": true,
7 | "htmlWhitespaceSensitivity": "ignore",
8 | "endOfLine": "auto"
9 | }
10 |
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Contributor Code of Conduct
2 |
3 | We base our day-to-day interactions and decision-making on AuroraOSS guidelines. Trust, respect, collaboration and transparency are core values we believe should live and breathe within our projects. Our community welcomes participants from around the world with different experiences, unique perspectives, and great ideas to share.
4 |
5 | ## Our Pledge
6 |
7 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
8 |
9 | ## Our Standards
10 |
11 | Examples of behaviour that contributes to creating a positive environment include:
12 |
13 | - Using welcoming and inclusive language
14 | - Being respectful of differing viewpoints and experiences
15 | - Gracefully accepting constructive criticism
16 | - Attempting collaboration before conflict
17 | - Focusing on what is best for the community
18 | - Showing empathy towards other community members
19 |
20 | Examples of unacceptable behaviour by participants include:
21 |
22 | - Violence, threats of violence, or inciting others to commit self-harm
23 | - The use of sexualized language or imagery and unwelcome sexual attention or advances
24 | - Trolling, intentionally spreading misinformation, insulting/derogatory comments, and personal or political attacks
25 | - Public or private harassment
26 | - Publishing others' private information, such as a physical or electronic address, without explicit permission
27 | - Abuse of the reporting process to intentionally harass or exclude others
28 | - Advocating for, or encouraging, any of the above behaviour
29 | - Other conduct which could reasonably be considered inappropriate in a professional setting
30 |
31 | ## Our Responsibilities
32 |
33 | Project maintainers are responsible for clarifying the standards of acceptable behaviour and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behaviour.
34 |
35 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
36 |
37 | ## Scope
38 |
39 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
40 |
41 | ## Enforcement
42 |
43 | Instances of abusive, harassing, or otherwise unacceptable behaviour may be reported by contacting us through [Email][email] or [Telegram][telegram]. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident.
44 |
45 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
46 |
47 | If you are unsure whether an incident is a violation, or whether the space where the incident took place is covered by our Code of Conduct, **we encourage you to still report it**. We would prefer to have a few extra reports where we decide to take no action, than to leave an incident go unnoticed and unresolved that may result in an individual or group to feel like they can no longer participate in the community. Reports deemed as not a violation will also allow us to improve our Code of Conduct and processes surrounding it. If you witness a dangerous situation or someone in distress, we encourage you to report even if you are only an observer.
48 |
49 | ## Attribution
50 |
51 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
52 |
53 | [homepage]: https://contributor-covenant.org
54 | [email]: mailto:auroraoss.dev@gmail.com
55 | [telegram]: https://t.me/auroraoss
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2021-present Austin Hornhead a.k.a austinhornhead_12/marchingon12
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | /* eslint-disable vue/comment-directive */
2 |
3 |
4 |
5 |
6 |
AuroraOSS Website
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 | ## About
19 |
20 | This is the main repository for the website hosted at auroraoss.com.
21 |
22 | ## Contributing
23 |
24 | Before doing a PR or commit, read the following documents to make sure your PR or commit is valid:
25 |
26 | - [CODE_OF_CONDUCT](CODE_OF_CONDUCT.md)
27 | - [CONTRIBUTING](CONTRIBUTING.md)
28 |
29 | ### Translations
30 |
31 | The way translated pages work here is (will be) by using submodules in git. This allows a repository to exist within a repository, meaning we can have many content repositories in different languages without having to edit most of the main repo itself. Please read [this](https://gist.github.com/gitaarik/8735255) very well explained git gist on Git Submodules.
32 |
33 | Every translation repo is assigned to a team, consisting of members who maintain the repo and check the content regularly. All changes must correspond with this parent repo.
34 |
35 | - German:
36 | - French:
37 | - Russian:
38 | - Chinese:
39 | - Spanish:
40 | - Italian:
41 | - Portuguese:
42 |
43 | ## Development
44 |
45 | Starting development server:
46 | ```bash
47 | # Using npm
48 | npm run dev
49 | # Using vuepress
50 | vuepress dev src
51 | ```
52 |
53 | Building static files:
54 | ```bash
55 | # Using npm
56 | npm run build
57 | # Using vuepress
58 | vuepress build src
59 | ```
60 |
61 |
62 | ## [License](LICENSE.md)
63 |
64 | View license
65 |
66 |
67 | MIT License
68 |
69 | Copyright (c) 2021-present Austin Hornhead a.k.a austinhornhead_12/marchingon12
70 |
71 | Permission is hereby granted, free of charge, to any person obtaining a copy
72 | of this software and associated documentation files (the "Software"), to deal
73 | in the Software without restriction, including without limitation the rights
74 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
75 | copies of the Software, and to permit persons to whom the Software is
76 | furnished to do so, subject to the following conditions:
77 |
78 | The above copyright notice and this permission notice shall be included in all
79 | copies or substantial portions of the Software.
80 |
81 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
82 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
83 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
84 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
85 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
86 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
87 | SOFTWARE.
88 |
89 |
90 |
91 |
92 | ## Browser compatibility
93 |
94 | ### Chrome/Chromium-based Browsers & Firefox Desktop
95 |
96 | You should have no problem with theming or CSS breaking.
97 |
98 | ### Firefox Mobile (Fenix)
99 |
100 | You may experience JS breaking or random reloads while scrolling through the page.
101 |
102 | The official Firefox has tons of fixes pending and many things still don't work with the mobile version. If you wish to remain using Firefox Mobile, use [Mull](https://divestos.org/fdroid/official/us.spotco.fennec_dos) by DivestOS, which you can download from their [F-Droid repository](https://divestos.org/fdroid/official/?fingerprint=E4BE8D6ABFA4D9D4FEEF03CDDA7FF62A73FD64B75566F6DD4E5E577550BE8467):
103 | - Link: https://divestos.org/fdroid/official/
104 | - Fingerprint: E4BE8D6ABFA4D9D4FEEF03CDDA7FF62A73FD64B75566F6DD4E5E577550BE8467
105 |
106 | Their fork has most of the fixes that make it stable and to use. Check out their source code [here](https://gitlab.com/divested-mobile/mull-fenix).
107 |
108 | With Mull you won't experience any problems.
109 |
110 | ## Credits
111 |
112 | Kudos to the tachiyomiorg/website team for their help.
113 | Huge thanks to [@robsonsobral](https://github.com/robsonsobral) for helping our with theming!
114 |
115 |
116 |
117 |
118 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "aurora-website",
3 | "version": "1.0.0",
4 | "description": "The official AuroraOSS website.",
5 | "main": "index.js",
6 | "authors": {
7 | "name": "Austin Hornhead",
8 | "email": "augustthegreat.cool@gmail.com"
9 | },
10 | "repository": {
11 | "type": "git",
12 | "url": "git+https://github.com/aurora-website/website_v1.git"
13 | },
14 | "scripts": {
15 | "dev": "vuepress dev src",
16 | "build": "vuepress build src",
17 | "format": "npx prettier -w src",
18 | "lint": "eslint --fix src/.vuepress/**/*.{js,vue}"
19 | },
20 | "license": "MIT",
21 | "private": true,
22 | "bugs": {
23 | "url": "https://github.com/aurora-website/website_v1/issues"
24 | },
25 | "homepage": "https://github.com/aurora-website/website_v1#readme",
26 | "devDependencies": {
27 | "@vuepress/plugin-active-header-links": "^1.8.2",
28 | "@vuepress/plugin-pwa": "^1.8.2",
29 | "babel-eslint": "^10.1.0",
30 | "eslint": "^7.21.0",
31 | "eslint-config-vuepress": "^3.2.0",
32 | "eslint-plugin-markdown": "^2.0.0",
33 | "eslint-plugin-vue": "^7.8.0",
34 | "vuepress": "^1.8.2",
35 | "vuepress-plugin-clean-urls": "^1.1.2",
36 | "vuepress-plugin-container": "^2.1.5",
37 | "vuepress-plugin-element-ui": "^1.1.0",
38 | "vuepress-plugin-robots": "^1.0.1",
39 | "vuepress-plugin-zooming": "^1.1.8"
40 | },
41 | "dependencies": {
42 | "@vuepress/plugin-back-to-top": "^1.8.2",
43 | "axios": "^0.21.1",
44 | "core-js": "^2.6.12",
45 | "element-ui": "^2.15.1",
46 | "marked": "^2.0.1",
47 | "prettier": "^2.2.1",
48 | "vue": "^2.6.12",
49 | "vue-good-table": "^2.21.3",
50 | "vue-moment": "^4.1.0",
51 | "vue-sweetalert2": "^4.2.1",
52 | "vue-tabler-icons": "^1.8.2",
53 | "vuepress-plugin-code-copy": "^1.0.6",
54 | "vuepress-plugin-sitemap": "^2.3.1",
55 | "vuex": "^3.6.2"
56 | }
57 | }
58 |
--------------------------------------------------------------------------------
/src/.vuepress/components/AuroraChangelogs.vue:
--------------------------------------------------------------------------------
1 |
2 |
34 |
35 |
36 |
37 |
88 |
89 |
179 |
--------------------------------------------------------------------------------
/src/.vuepress/theme/components/Sidebar.vue:
--------------------------------------------------------------------------------
1 |
2 |
14 |
15 |
16 |
26 |
27 |
78 |
--------------------------------------------------------------------------------
/src/.vuepress/theme/index.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | extend: "@vuepress/theme-default",
3 | };
4 |
--------------------------------------------------------------------------------
/src/contact/README.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: Contact
3 | title: AuroraOSS contact
4 | metaTitle: AuroraOSS contact
5 | description: Contact the AuroraOSS Team!
6 | lang: en-GB
7 | meta:
8 | - property: og:image
9 | content: /icons/auroralogo.webp
10 | sidebar: true
11 | ---
12 |
13 | # Contact
14 |
15 | ## The Team
16 |
17 |
18 |
19 | ## Support
20 |
21 | Any questions our FAQs can't answer, problems that you want to discuss discreetly or trust issues with our apps? No worries! Feel free to contact us on any of the following platforms below.
22 |
23 | ### Telegram
24 |
25 | Our go-to platform would be Telegram. We are almost active everyday so we won't miss a message if you chime in. Install Telegram if you don't already have it, choose any of the groups below and scan them with a QR Code scanner to get started!
26 |
27 | ...or click on the QR code images to open the links. (QR codes are cooler, though.)
28 |
29 | ::: guide Important!
30 | Please read the group rules, pinned messages and a few of the previous messages to see if their context is what you are looking for before asking any questions, you're helping us reduce spam and time! 👍
31 | :::
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 | ### GitLab
50 |
51 | All the issues and merge requsts for the code of our apps are reported on our GitLab Organization, [AuroraOSS](https://gitlab.com/auroraoss).
52 |
53 | ### XDA
54 |
55 | For those who have been in the Android community for some time might know about XDA-Developers, a great place for Android enthusiasts to tinker and explore Android. Check out our XDA-Developers Forum [Thread](https://forum.xda-developers.com/t/app-5-0-aurora-store-an-unofficial-oss-play-store-client-may-16.3739733/) for Aurora Store.
56 |
57 | ### Email
58 |
59 | Want to write to us discreetly? Send us a [mail](mailto:auroraoss.dev@gmail.com)!
60 |
61 | ### Reddit (planned)
62 |
63 | We're planning on starting a Reddit subreddit after we stabilized things a bit. Who wouldn't want their service to be on the world's most well-known forum service, right?
64 |
65 |
66 |
--------------------------------------------------------------------------------
/src/contribution/BCH.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: DonationPage
3 | title: Bitcoin Cash Donation
4 | description: Donate Bitcoin Cash to AuroraOSS!
5 | lang: en-GB
6 | sidebar: false
7 | ---
8 |
9 | # Bitcoin Cash
10 |
11 |
16 |
17 | ### Etherum (ETH):
18 |
19 | ```
20 | 0x6977446933EC8b5964D921f7377950992337B1C6
21 | ```
22 |
23 | ---
24 |
--------------------------------------------------------------------------------
/src/contribution/README.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Contribution
3 | description: Find out how to contribute to AuroraOSS!
4 | lang: en-GB
5 | meta:
6 | - property: og:image
7 | content: /icons/auroralogo.webp
8 | sidebar: true
9 | ---
10 |
11 | # Contribution
12 |
13 | Find out how to help translate or contribute to AuroraOSS.
14 |
15 | ## Code
16 |
17 | Skilled at code? Know how to improve something or you generally want to support the creation of our apps?
18 |
19 | For UI improvements, you can do a Merge Request. These will not be checked on as often, but if it's something major and urgent then we will consider merging.
20 |
21 | ### Applications
22 |
23 | Source code of applications by AuroraOSS.
24 |
25 | - [aurorastore](https://gitlab.com/auroraoss/aurorastore)
26 | - [auroradroid](https://gitlab.com/auroraoss/auroradroid)
27 | - [appwarden](https://gitlab.com/auroraoss/appwarden)
28 | - [aurorawallpapers](https://gitlab.com/auroraoss/aurorawallpapers)
29 |
30 | ---
31 |
32 | ### Website
33 |
34 | The repository that hosts this very website you're reading on now.
35 |
36 | - [aurora-website/website_v1](https://github.com/aurora-website/website_v1)
37 |
38 | ---
39 |
40 | ### Translation
41 |
42 | Want to help translate the website to your language? You can easily help by utilizing a service we use called **POEditor**.
43 |
44 | Visit our translation projects:
45 |
46 | - [Website](https://poeditor.com/join/project/54swaCpFXJ) (coming soon).
47 | - [Aurora Store](https://poeditor.com/join/project/54swaCpFXJ).
48 | - [Aurora Droid](https://poeditor.com/join/project/a9lzT3YrI4).
49 |
50 | ::: c-tip Notice
51 | We will soon be moving our translation projects to [Weblate](https://hosted.weblate.org).
52 | :::
53 |
54 | #### Project status
55 | ***
56 | Aurora Store v4
57 |
58 |
59 |
60 |
61 | ***
62 | Aurora Website
63 |
64 |
65 |
66 |
67 |
68 | #### Helpful links
69 |
70 | ---
71 |
72 | - [Translators guide](https://docs.weblate.org/en/latest/user/translating.html)
73 | - [Secondary-languages](https://docs.weblate.org/en/latest/user/profile.html#secondary-languages)
74 | - [Subscriptions](https://docs.weblate.org/en/latest/user/profile.html#subscriptions)
75 | - [Glossary](https://docs.weblate.org/en/latest/user/translating.html#glossary)
76 |
77 | ## Donation
78 |
79 | If you can't contribute code or translations but you still wish to help, then you can choose to contribute directly to the projects founder, [whyorean](https://gitlab.com/whyorean/) by using the following sources below.
80 |
81 | ---
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
--------------------------------------------------------------------------------
/src/contribution/UPI.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: DonationPage
3 | title: UPI Donation
4 | description: Donate via UPI to AuroraOSS!
5 | lang: en-GB
6 | sidebar: false
7 | ---
8 |
9 | # UPI
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/de/contact/README.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: Contact
3 | title: AuroraOSS contact
4 | metaTitle: AuroraOSS contact
5 | description: Contact the AuroraOSS Team!
6 | lang: de
7 | meta:
8 | - property: og:image
9 | content: /icons/auroralogo.webp
10 | sidebar: true
11 | ---
12 |
13 | # Contact
14 |
15 | ## The Team
16 |
17 |
18 |
19 | ## Support
20 |
21 | Any questions our FAQs can't answer, problems that you want to discuss discreetly or trust issues with our apps? No worries! Feel free to contact us on any of the following platforms below.
22 |
23 | ### Telegram
24 |
25 | Our go-to platform would be Telegram. We are almost active everyday so we won't miss a message if you chime in. Install Telegram if you don't already have it, choose any of the groups below and scan them with a QR Code scanner to get started!
26 |
27 | ...or click on the QR code images to open the links. (QR codes are cooler, though.)
28 |
29 | ::: guide Important!
30 | Please read the group rules, pinned messages and a few of the previous messages to see if their context is what you are looking for before asking any questions, you're helping us reduce spam and time! 👍
31 | :::
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 | ### GitLab
50 |
51 | All the issues and merge requsts for the code of our apps are reported on our GitLab Organization, [AuroraOSS](https://gitlab.com/auroraoss).
52 |
53 | ### XDA
54 |
55 | For those who have been in the Android community for some time might know about XDA-Developers, a great place for Android enthusiasts to tinker and explore Android. Check out our XDA-Developers Forum [Thread](https://forum.xda-developers.com/t/app-5-0-aurora-store-an-unofficial-oss-play-store-client-may-16.3739733/) for Aurora Store.
56 |
57 | ### Email
58 |
59 | Want to write to us discreetly? Send us a [mail](mailto:auroraoss.dev@gmail.com)!
60 |
61 | ### Reddit (planned)
62 |
63 | We're planning on starting a Reddit subreddit after we stabilized things a bit. Who wouldn't want their service to be on the world's most well-known forum service, right?
64 |
65 |
--------------------------------------------------------------------------------
/src/de/contribution/BCH.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: DonationPage
3 | title: Bitcoin Cash Donation
4 | description: Donate Bitcoin Cash to AuroraOSS!
5 | lang: de
6 | sidebar: false
7 | ---
8 |
9 | # Bitcoin Cash
10 |
11 |
--------------------------------------------------------------------------------
/src/de/download/AuroraStore/README.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: DownloadPage
3 | title: Aurora Store
4 | description: An open-source alternative Google Play Store frontend with privacy features and clean UI.
5 | lang: de
6 | meta:
7 | - property: og:title
8 | content: Aurora Store
9 | - property: og:description
10 | content: An open-source alternative Google Play Store frontend with privacy features and clean UI.
11 | - property: og:image
12 | content: /assets/storebanner1200x680.webp
13 | - property: og:image:alt
14 | content: Aurora Store Banner Image
15 | - property: og:url
16 | content: /de/download/AuroraStore/
17 | - property: og:locale
18 | content: de
19 | - property: twitter:card
20 | content: summary_large_image
21 | sidebar: false
22 | ---
23 |
24 | # Aurora Store
25 |
26 | ## About
27 |
28 | Aurora Store is an open-source alternative Google Play Store frontend client with privacy and modern design in mind. Not only does Aurora Store download, update, and search for apps like the Play Store, it also empowers the user with useful features.
29 |
30 | ## Screenshots
31 |
32 |
33 |
34 | ## Features:
35 |
36 | - **Anonymous login**: Login anonymously so that you stay private.
37 | - **Google login**: access your paid apps and install beta apps.
38 | - **Device spoofing**: App not available for your device? Use available device configurations to spoof you device!
39 | - **Filter F-Droid app**: Don't want F-Droid apps to be in your update list? Use the filter to exclude them.
40 | - **Blacklist apps**: By blacklisting apps, Google will not know that the selected apps are installed on your device.
41 |
42 | ## Credits
43 |
44 | - [whyorean](https://gitlab.com/whyorean/) (Rahul Patel) for making the app.
45 |
46 | ## Known Bugs
47 |
48 | ::: guide Bugs
49 | - Root installation not working properly on Android 11 (R+)
50 | :::
51 |
52 | ## Terms Of Service
53 |
54 | Every user is required to read and agree to the Terms of Service before being able to use Aurora Store. You can read the Terms Of Service [here](/de/download/AuroraStore/terms-of-service/).
55 |
56 | ## Policy
57 |
58 | Please read our [Policy](/de/download/AuroraStore/policy/) to know what we data we require & collect from you and what we send to Google.
59 |
60 | ## Disclaimer
61 |
62 | Please read our [Disclaimer](/de/download/AuroraStore/disclaimer/) to know why what you do using Aurora Store is up to you and not us.
63 |
64 | As per [**Google Play Terms of Service §4**](https://play.google.com/intl/en-us_us/about/play-terms/index.html), under "Restrictions" there are a number of things that could potentially be used against you for the deactivation of your personal Google account that you want to remain using.
65 |
66 | ## Support Group
67 |
68 |
73 |
--------------------------------------------------------------------------------
/src/de/download/AuroraStore/disclaimer.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: DISCLAIMER
3 | description: Disclaimer for Aurora Store
4 | lang: de
5 | meta:
6 | - property: og:title
7 | content: Disclaimer
8 | - property: og:description
9 | content: Disclaimer for Aurora Store
10 | - property: og:image
11 | content: /icons/disclaimer_icon.png
12 | - property: og:image:alt
13 | content: Aurora Store Disclaimer Banner Image
14 | - property: og:url
15 | content: /de/download/AuroraStore/disclaimer
16 | - property: og:locale
17 | content: de
18 | - property: twitter:card
19 | content: summary
20 | sidebar: false
21 | ---
22 |
23 | # Disclaimer
24 |
25 | ### 1. Google Accounts.
26 |
27 | You hold yourself accountable if you are to use Aurora Store with your personal Google Account, which may cause your account to be blocked/blacklisted by Google. As per **Google Play's Terms Of Service §4 and §2**:
28 |
29 | #### §4 Rights and Restrictions
30 |
31 | > **Violation of License Terms.** If you violate any of the Content restriction provisions of the Terms, materially or repeatedly violate any of the other Terms or we are investigating you for suspected misconduct then Google may, without refund to you, terminate your access to Google Play, the Content or your Google Account and your rights under this licence will immediately terminate. We will notify you with the reason for our action unless we reasonably believe that to do so would cause Google or another person legal liability, would compromise an investigation, would compromise the operation of any Google products, services or systems, would cause harm to our users or would be in breach of the law or the direction of a legal enforcement authority. See Disabled Accounts in Section 2 for additional information.
32 | >
33 | > **Restrictions:** You may not:
34 | >
35 | > - display (in part or in whole) the Content as part of any public performance or display even if no fee is charged except (a) where such use would not constitute a copyright infringement or violate any other applicable right or (b) as specifically permitted and only in the exact manner provided.
36 | > - sell, rent, lease, redistribute, broadcast, transmit, communicate, modify, sublicense, transfer, assign any Content to any third party including with regard to any downloads of Content that you may obtain through Google Play except as specifically permitted and only in the exact manner provided.
37 | > - use Google Play or any Content in conjunction with any stream-ripping, stream capture or similar software to record or create a copy of any Content that is presented to you in streaming format.
38 | > - use Content as part of any service for sharing, lending or multi-person use, or for the purpose of any other institution, except as specifically permitted and only in the exact manner provided.
39 | > - attempt to, or assist, authorize or encourage others to circumvent, disable or defeat any of the security features or components that protect, obfuscate or otherwise restrict access to any Content or Google Play.
40 | > - remove any watermarks, labels or other legal or proprietary notices included in any Content, or attempt to modify any Content obtained through Google Play, including any modification for the purpose of disguising or changing any indications of the ownership or source of Content.
41 | >
42 | > **Multiple Accounts.** If you have multiple Google Accounts with different user names, in some cases you may transfer Content out of an account and into another account, provided you are the owner of each such account and provided Google has enabled a feature of the relevant service allowing such transfers.
43 |
44 | #### §2 Your Use of Google Play
45 | > **Disabled Accounts.** If Google disables access to your account in accordance with the Terms (for example if you materially or repeatedly violate the Terms), you may be prevented from accessing Google Play, your account details or any files or other Content that is stored with your account. See the Help Center for more information. If you are the family manager of a family on Google Play and Google disables access to your account, your family members may lose access to family features requiring a family group, such as a family payment method, family subscriptions, or Content shared by family members. If you are a family member of a family on Google Play and Google disables your account, your family members will lose access to Content you have shared with them.
46 |
47 | ### 2. Installing **Aurora Store** from third-party sources.
48 |
49 | You are to hold yourself responsible by installing **Aurora Store** from other sources other than our own, in which you do not blame us for malicious programs, device bricking or anything else. The following sources are the only official links we provide:
50 | - **F-Droid:** [https://f-droid.org/en/packages/com.aurora.store/](https://f-droid.org/en/packages/com.aurora.store/)
51 | - **AuroraOSS Website:** [https://auroraoss.com/download/](https://auroraoss.com/download/)
52 | - **Official Telegram Channel:** [https://t.me/AuroraOfficial](https://t.me/AuroraOfficial)
53 | - **GitLab:** [https://gitlab.com/AuroraOSS/AuroraStore/-/releases](https://gitlab.com/AuroraOSS/AuroraStore/-/releases)
54 |
55 | ### 3. Links in Aurora Store
56 |
57 | **AuroraOSS**, makes no claim or representation regarding, and accepts no responsibility for third party websites accessible by hyperlink from the Service or websites linking to the Service. When you leave the Service, you should be aware that these Terms and our policies no longer govern. The only links we provide are:
58 |
59 | - **Donation links** Bitcoin, Bitcoin Cash, Etherum, BHIM-UPI, PayPal & Liberapay links
60 | - **Repository sources** GitLab repository link
61 | - **xda-developers** Aurora Store xda-developers thread
62 | - **Telegram** Aurora Support group link
63 | - **F-Droid** Aurora Store in F-Droid repository link
64 |
65 | ### 4. Content
66 |
67 | We do not own any content within **Aurora Store**, all available content i.e. applications, information and links are provided "as is" directly from Google Play repositories/servers. For all content on **Aurora Store**, we don't review, verify or authenticate it, and it may include inaccuracies or false information. We make no representations, warranties, or guarantees relating to the quality, suitability, truth, accuracy or completeness of any content contained in the Service. You acknowledge sole responsibility for and assume all risk arising from your use of or reliance on any content.
68 |
69 |
--------------------------------------------------------------------------------
/src/de/download/AuroraStore/policy.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: POLICY
3 | description: Policy for Aurora Store
4 | lang: de
5 | meta:
6 | - property: og:title
7 | content: Privacy Policy
8 | - property: og:description
9 | content: Policy for Aurora Store
10 | - property: og:image
11 | content: /icons/policy_icon.png
12 | - property: og:image:alt
13 | content: Aurora Store Policy Banner Image
14 | - property: og:url
15 | content: /de/download/AuroraStore/policy
16 | - property: og:locale
17 | content: de
18 | - property: twitter:card
19 | content: summary
20 | sidebar: false
21 | ---
22 |
23 | # Aurora Store Privacy Policy Last Updated: **01.03.2021**
24 |
25 | ## User data sent to Google by default
26 |
27 | The following data is mandatory to make the Service function, all of which Google needs for **Aurora Store** to be able to receive required data:
28 |
29 | - **IP Address** which is bound to network request
30 | - **Timezone, MCC & MNC\*** are stripped & replaced with a random constant
31 | - **BUILD_CONFIG** includes the app details - package name, version-name, version-code
32 | - **BUILD** includes your device details, see for more info
33 |
34 | If you choose to use your own account, the following are added to the above:
35 |
36 | - **Account details** for Google sign-in verification
37 |
38 | We do not store, process or sell any of the collected data above. The data is sent to and processed by Google's servers directly untouched. All accounts being used within **Aurora Store** are saved onto the device as AAS Tokens & email pair for account verification. **No passwords** are saved to Aurora Store.
39 |
40 | **\*MCC**: Mobile Country Code; **MNC**: Mobile Network Code.
41 |
42 | ## User data sent to our server by default
43 |
44 | The only data being sent to our server are **IP addresses**. This is to ensure the functionality and stability of our server, which detects the amount of GET requests from an IP address and if deemed them as spamming, will be banned from our server, otherwise rate-limited. Rate-limiting lasts for an hour. If you keep going over the 20 request per hour limit, an additional hour to the rate-limiting will be added for every additional 20 requests. So do yourself a favour and don't do it.
45 |
46 | ## Changes To This Privacy Policy
47 |
48 | We may update our Privacy Policy from time to time. You are thus advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.
49 |
50 | ## Contact Us
51 |
52 | If you have any questions about this Privacy Policy, please contact us at **aurora.dev@gmail.com** or via our support groups on Telegram.
53 |
--------------------------------------------------------------------------------
/src/de/download/AuroraStore/terms-of-service.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: TermsOfService
3 | description: Terms of Service for Aurora Store
4 | lang: de
5 | meta:
6 | - property: og:title
7 | content: Terms of Service
8 | - property: og:description
9 | content: Terms of Service for Aurora Store
10 | - property: og:image
11 | content: /icons/tos_icon.png
12 | - property: og:image:alt
13 | content: Aurora Store TOS Banner Image
14 | - property: og:url
15 | content: /de/download/AuroraStore/terms-of-service
16 | - property: og:locale
17 | content: de
18 | - property: twitter:card
19 | content: summary
20 | sidebar: false
21 | ---
22 |
23 | # **Aurora Store** TERMS OF SERVICE
24 |
25 | Last Updated: **01.03.2021**
26 |
27 | These terms of service ("Terms") apply to your access and use of **Aurora Store**. Please read them carefully.
28 |
29 | ## Accepting these Terms
30 |
31 | If you access or use the Service, it means you agree to be bound by all of the terms below. So, before you use the Service, please read all of the terms. If you don't agree to all of the terms below, please do not use the Service. Also, if a term does not make sense to you, please let us know by e-mailing [auroraoss.dev@gmail.com](mailto:auroraoss.dev@gmail.com).
32 |
33 | ## Changes to these Terms
34 |
35 | We reserve the right to modify these Terms at any time. For instance, we may need to change these Terms if we come out with a new feature or for some other reason. Whenever we make changes to these Terms, the changes are effective **01.03.2021** after we post such revised Terms (indicated by revising the date at the top of these Terms) or upon your acceptance if we provide a mechanism for your immediate acceptance of the revised Terms (such as a click-through confirmation or acceptance button). It is your responsibility to check **Aurora Store** for changes to these Terms. If you continue to use the Service after the revised Terms go into effect, then you have accepted the changes to these Terms.
36 |
37 | ## Privacy Policy
38 |
39 | We have a privacy policy covering the collection, use, and disclosure of user information, which can be found [here](/download/AuroraStore/policy/).
40 |
41 | ## Copyright Policy
42 |
43 | We take intellectual property rights seriously, and by using a copyright policy in accordance with the GNU GENERAL PUBLIC LICENSE Version 3, we have adopted a policy of terminating, in appropriate circumstances and, at our sole discretion, access to the service for users who are deemed to be repeat infringers. Persons who wish to fork the Aurora Store project or copy code from the repository MUST comply with the used license. The license in use can be found [here](https://www.gnu.org/licenses/gpl-3.0.en.html)
44 |
45 | ## Disclaimer
46 |
47 | We have a disclaimer covering the use of our Service and the content within **Aurora Store**, which can be found [here](/download/AuroraStore/disclaimer/).
48 |
49 | ## Third-Party Services
50 |
51 | We provide users with two major third party services. Your use of the Service may also include the use of applications that are developed or owned by a third party. Your use of such third party applications, websites, and services is governed by that party's own terms of service or privacy policies. We encourage you to read the terms and conditions and privacy policy of any third party application, website or service that you visit or use.
52 |
53 | ## Token Dispenser Server
54 |
55 | We provide users with the ability to use anonymous accounts within **Aurora Store**, provided from our server as tokens. Your use of the Service agrees to not affect our server in any way deemed harmful or with malicious intent. We may occasionally ask contributors to provide us with accounts. You hereby acknowledge that the accounts you make for **Aurora Store** to be given entire access to **AuroraOSS** and to be stored on our server. This does not apply to non-anonymous accounts.
56 |
57 | If there are anonymous accounts that somehow are able to gain access to paid apps, you MUST directly inform us with:
58 | - **Proof**, be it a a screen recording, screenshots or other image/video material,
59 | - **Email address** of the account, which can be located at the Accounts page on the sidebar as **Accounts**,
60 | - **Time & Date** of when you encountered the breach.
61 | You can either message admins of the Telegram support group, direct message [@whyorean](tg://resolve?domain=whyorean) or via [auroraoss.dev@gmail.com](mailto:auroraoss.dev@gmail.com).
62 |
63 | If we find accounts with a breach like this, we will either:
64 | - remove that account from the dispenser server or,
65 | - fix the breach and generate a new AAS token for that account or,
66 | - shut down the dispenser server with a notice on our website blog and Telegram channel, stating what the problem is.
67 |
68 | We do not allow or support piracy and do not tolerate users who abuse our Service. We are obligated to block users from accessing the accounts. Our server, our rules.
69 |
70 | ## **Aurora Store** Materials
71 |
72 | We put a lot of effort into creating the Service including, the logo and all designs, text, graphics, pictures, information and other content (excluding content within **Aurora Store**). This property is owned by us or our licensors and it is protected by open-source licenses. We grant you the right to use it.
73 |
74 | ## Unavoidable Legal Stuff
75 |
76 | THE SERVICE AND ANY OTHER SERVICE AND CONTENT INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THE SERVICE ARE PROVIDED TO YOU ON AN AS IS OR AS AVAILABLE BASIS WITHOUT ANY REPRESENTATIONS OR WARRANTIES OF ANY KIND. WE DISCLAIM ANY AND ALL WARRANTIES AND REPRESENTATIONS (EXPRESS OR IMPLIED, ORAL OR WRITTEN) WITH RESPECT TO THE SERVICE AND CONTENT INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THE SERVICE WHETHER ALLEGED TO ARISE BY OPERATION OF LAW, BY REASON OF CUSTOM OR USAGE IN THE TRADE, BY COURSE OF DEALING OR OTHERWISE. IN NO EVENT WILL **AURORA OSS** BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY SPECIAL, INDIRECT, INCIDENTAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES OF ANY KIND ARISING OUT OF OR IN CONNECTION WITH THE SERVICE OR ANY OTHER SERVICE AND/OR CONTENT INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THE SERVICE, REGARDLESS OF THE FORM OF ACTION, WHETHER IN CONTRACT, TORT, STRICT LIABILITY OR OTHERWISE, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES OR ARE AWARE OF THE POSSIBILITY OF SUCH DAMAGES. OUR TOTAL LIABILITY FOR ALL CAUSES OF ACTION AND UNDER ALL THEORIES OF LIABILITY WILL BE LIMITED TO THE AMOUNT YOU PAID TO **AURORA OSS**. THIS SECTION WILL BE GIVEN FULL EFFECT EVEN IF ANY REMEDY SPECIFIED IN THIS AGREEMENT IS DEEMED TO HAVE FAILED OF ITS ESSENTIAL PURPOSE. You agree to defend, indemnify and hold us harmless from and against any and all costs, damages, liabilities, and expenses (including attorneys' fees, costs, penalties, interest and disbursements) we incur in relation to, arising from, or for the purpose of avoiding, any claim or demand from a third party relating to your use of the Service or the use of the Service by any person using your account, including any claim that your use of the Service violates any applicable law or regulation, or the rights of any third party, and/or your violation of these Terms. ## Termination If you breach any of these Terms, we have the right to suspend or disable your access to or use of the Service.
77 |
78 | ## Entire Agreement
79 |
80 | These Terms constitute the entire agreement between you and **AuroraOSS** regarding the use of the Service, superseding any prior agreements between you and **AuroraOSS** relating to your use of the Service.
81 |
82 | ## Feedback
83 |
84 | Please let us know what you think of the Service, these Terms and, in general, **Aurora Store**. When you provide us with any feedback, comments or suggestions about the Service, these Terms and, in general, **Aurora Store**, you irrevocably assign to us all of your right, title and interest in and to your feedback, comments and suggestions. If you discover or suspect any Service security breaches, please let us know as soon as possible.
85 |
86 | ## Questions & Contact Information
87 |
88 | Questions or comments about the Service may be directed to us at the email address [auroraoss.dev@gmail.com](mailto:auroraoss.dev@gmail.com).
--------------------------------------------------------------------------------
/src/de/download/AuroraWallpapers.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: DownloadPage
3 | title: Aurora Wallpapers
4 | description: Beautiful wallpapers readily available within your fingertips!
5 | lang: de
6 | meta:
7 | - property: og:title
8 | content: Aurora Wallpapers
9 | - property: og:description
10 | content: Beautiful wallpapers readily available within your fingertips!
11 | - property: og:image
12 | content: /assets/storebanner1200x680.webp
13 | - property: og:image:alt
14 | content: Aurora Wallpapers Banner Image
15 | - property: og:url
16 | content: /download/AuroraWallpapers/
17 | - property: og:locale
18 | content: de
19 | - property: twitter:card
20 | content: summary_large_image
21 | sidebar: false
22 | ---
23 |
24 | # Aurora Store
25 |
26 | ## About
27 |
28 | App Warden is an app utility manager for all your installed apps.
29 |
30 | ## Screenshots
31 |
32 |
33 |
34 | ## Features:
35 |
36 | - Generates report for all trackers & loggers present in app installed on device.
37 | - Advance profile based de-bloater, allowing to disable/uninstall/hide junks.
38 | - **Nuke it!** - Disable all trackers across the whole device automatically.
39 | - Show trackers hidden in an app with version history, powered by Exodus Privacy.
40 |
41 | ## Credits
42 |
43 | - [whyorean](https://gitlab.com/whyorean/) (Rahul Patel) for making the app.
44 |
45 | ## Known Bugs
46 |
47 | ## Disclaimer
48 |
49 | The developer of this application is not responsible for getting your device bricked or modifications you do. You are using this service at your own risk, so please do not blame the dev.
50 |
51 | ## Support Group
52 |
53 |
--------------------------------------------------------------------------------
/src/de/download/README.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: Downloads
3 | title: Downloads
4 | metaTitle: Downloads
5 | description: Download the latest Aurora Apps.
6 | meta:
7 | - name: keywords
8 | content: Download, Official, Android app, App Store, APK
9 | lang: de
10 | ---
11 |
12 | # Downloads
13 |
14 | Download our latest apps here.
15 |
16 | ::: c-tip Tip!
17 | To know more about our apps, click on the app titles!
18 | :::
19 |
20 | ## [Aurora Store](/download/AuroraStore/)
21 |
22 | The latest stable version of **Aurora Store** was uploaded .
23 |
24 |
25 |
26 |
27 |
28 | ::: c-tip
29 | Older versions of **Aurora Store** (Stable & Nightly) can be found [here](https://files.auroraoss.com/AuroraStore/).
30 | :::
31 |
32 | ## [Aurora Droid](/download/AuroraDroid/)
33 |
34 | The latest stable version of **Aurora Droid** was uploaded .
35 |
36 |
37 |
38 |
39 |
40 | ::: c-tip
41 | Older versions of **Aurora Droid** (Stable & Nightly) can be found [here](https://files.auroraoss.com/AuroraDroid/).
42 | :::
43 |
44 | ## [App Warden](/download/AppWarden/)
45 |
46 | The latest version of **App Warden** was uploaded .
47 |
48 |
49 |
50 |
51 |
52 | ::: c-tip
53 | Older versions of **App Warden** can be found [here](https://files.auroraoss.com/AppWarden/Stable/). \
54 | Scripts can be found [here](https://files.auroraoss.com/AppWarden/Scripts/)
55 | :::
56 |
57 | ## [Aurora Wallpapers](/download/AuroraWallpapers/)
58 |
59 | The latest version of **Aurora Wallpapers** was uploaded .
60 |
61 |
62 |
63 |
64 |
65 | ::: c-tip
66 | Older versions of **Aurora Wallpapers** can be found [here](https://files.auroraoss.com/Wallpapers/).
67 | :::
68 |
--------------------------------------------------------------------------------
/src/de/faq/site-policy.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: SITE-POLICY
3 | description: Privacy Policy for AuroraOSS.com
4 | lang: de
5 | meta:
6 | - property: og:title
7 | content: Privacy Policy
8 | - property: og:description
9 | content: Privacy Policy for AuroraOSS.com
10 | - property: og:image
11 | content: /icons/policy_icon.png
12 | - property: og:image:alt
13 | content: AuroraOSS Policy Banner Image
14 | - property: og:url
15 | content: /de/faq/site-policy
16 | - property: og:locale
17 | content: de
18 | - property: twitter:card
19 | content: summary
20 | published: March 9, 2021
21 | sidebar: false
22 | search: false
23 | ---
24 |
25 | # Privacy Statement for AuroraOSS.com
26 |
27 | Effective date: **{{ $frontmatter.published }}**
28 |
29 | [[toc]]
30 |
31 | ## What information AuroraOSS does collect
32 |
33 | "User Personal Information" is any information about one of our Users which could, alone or together with other information, personally identify them or otherwise be reasonably linked or connected with them. Information like your Internet protocol (IP) address is collected within the category “User Personal Information.”
34 |
35 | User Personal Information does not include aggregated, non-personally identifying information that does not identify a User or cannot otherwise be reasonably linked or connected with them.
36 |
37 | ### Device information
38 |
39 | We may collect certain information about your device, such as its IP address, browser or client application information, language preference, operating system and application version, device type and ID, and device model and manufacturer. This information may include User Personal information.
40 |
41 | The reason for this is to help us differentiate between real users and bots, so that we can filter them out and block them from sending a certain amount of GET requests. Some bots use very old version of browsers such as Firefox, Chrome & other Chromium browsers, others use special techniques to make themselves look like real users. We do our best to minimize mixups
42 |
43 | ## What information AuroraOSS does _not_ collect
44 |
45 | We do not and have no means of collecting “[Sensitive Personal Information](https://gdpr-info.eu/art-9-gdpr/)”, such as personal data revealing racial or ethnic origin, political opinions, religious or philosophical beliefs, or trade union membership, and the processing of genetic data, biometric data for the purpose of uniquely identifying a natural person, data concerning health or data concerning a natural person’s sex life or sexual orientation.
46 |
47 | ## How AuroraOSS uses your information
48 |
49 | We use your information for the following purposes:
50 |
51 | - We store IP addresses if our server deems the IP 'harmful', due to the fact that a few individuals spam (meaning sending requests every second) our servers with GET requests, which caused some complications in the past.
52 | - We use Usage Information and [Device Information](#device-information) to better understand how our Users use GitHub and to improve our Website and server stability.
53 | - We limit our use of your User Personal Information to the purposes listed in this Privacy Statement. If we need to use your User Personal Information for other purposes, we will ask your permission first.
54 |
55 | ## Our use of Cookies
56 |
57 | We do not require any cookies, which automatically excludes us from being able to store, process or sell your data using cookies. We do however, utilise [localStorage](https://javascript.info/localstorage) for the sole purpose of switching between Light and Dark themes.
58 |
59 | ## Changes to our Privacy Statement
60 |
61 | Although most changes are likely to be minor, AuroraOSS may change our Privacy Statement from time to time. We will provide notification to Users of material changes to this Privacy Statement through our Website at least 30 days prior to the change taking effect by posting a notice on our home page. We will also update the repository to this website, which tracks all changes to this policy. For other changes to this Privacy Statement, we encourage Users to watch or to check our repository frequently.
62 |
63 | ## License
64 |
65 | This Privacy Statement is licensed under this [Creative Commons Zero](https://creativecommons.org/publicdomain/zero/1.0/) license. For details, see our site-policy repository.
66 |
67 | ## Translations
68 |
69 | Below are translations of this document into other languages. In the event of any conflict, uncertainty, or apparent inconsistency between any of those versions and the English version, this English version is the controlling version.
70 |
71 | - Englisch: [Website Policy](/faq/site-policy/)
72 | - French: [Politique du site](/de/faq/site-policy/)
73 | - Spanish: [Política del sitio](/de/faq/site-policy/)
74 | - Portuguese: [Política do site](/de/faq/site-policy/)
75 | - Russian: [политика сайта](/de/faq/site-policy/)
76 | - Chinese: [网站政策](/de/faq/site-policy/)
77 | - Hindi: [वेबसाइट नीति](/de/faq/site-policy/)
78 |
79 | Please proceed to the [Contribution](/de/contribution/#translation) page for more info on translating this website.
80 |
81 | ## Contacting AuroraOSS
82 |
83 | Questions regarding AuroraOSS' Privacy Statement or information practices should be directed to our support information on the [contact page](/de/contact/).
84 |
--------------------------------------------------------------------------------
/src/de/guides/anonymous-logins.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Anonymous Logins
3 | description: A short explanation on how Anonymous Logins work.
4 | lang: de
5 | meta:
6 | - property: og:title
7 | content: Anonymous Logins
8 | - property: og:description
9 | content: A short explanation on how Anonymous Logins work.
10 | - property: og:image
11 | content: /assets/undraw_authentication.png
12 | - property: og:image:alt
13 | content: Anonymous Logins Banner Image
14 | - property: og:url
15 | content: /de/guides/anonymous-logins
16 | - property: og:locale
17 | content: de
18 | - property: twitter:card
19 | content: summary_large_image
20 | sidebar: true
21 | ---
22 |
23 | # Anonymous Logins
24 | 
25 |
26 | ## How does it work?
27 |
28 | **The Anonymous login feature is great for privacy enthusiasts; however, there are certain things you should know.**
29 |
30 | 1. **What is a Token Dispenser?**
31 |
32 | A token dispenser is a web client that has around 150 real google accounts (inclusive of all servers). It distributes the AuthToken[2] for anyone who makes a request to it in a defined format.
33 |
34 | So basically all dispensers have the email-password (now aas tokens) pairs on the server. When a user makes a request, the server logs in to google using provided dummy accounts, generates an authentication token and this token is given to the user.
35 |
36 | All the dispensers are configured to use dummy device profiles, default : Xiaomi Mi5.
37 |
38 | (Why Xiaomi ? Because I had this device when I first started android developement, nothing else. China has nothing to do with it. Chill !)
39 |
40 | 2. **What is an AuthToken?**
41 |
42 | In simple terms its a token that lets you access PlayStore service.
43 |
44 | There are other complementary tokens required to make the api work, but that's done via Aurora Store and not related to Dispensers, so I would prefer avoiding it.
45 |
46 | 3. **Why do Aurora Store always say "Session-expired"?**
47 |
48 | There are multiple things that may cause it:
49 |
50 | 1. Multiple users are logged in using same dummy account provide by the dispenser, in different geographic locations.
51 |
52 | 2. There is a limit for concurrent active login sessions, post that limit, Google invalidates all sessions.
53 |
54 | 3. Recently google started putting a "rate-limit" on the usage of api, so if it detects overuse of the api, it just invalidates the authentication token.
55 |
56 | How does Aurora reach the rate-limit ? The search logic I use now is just stupid greedy approach, but it works, so !
57 |
58 | I will improve it and try to match how exactly Play Store does it.
59 |
60 | 4. Why am I not able to login anonymously [OR] I'm able to login on device A and not on device B ?
61 |
62 | Again there can be multiple reasons:
63 |
64 | 1. Network configuration, make sure Aurora Store has access to internet.
65 |
66 | 2. Network filter, make sure you haven't blacklisted "Cloud Flare" all the dispenser are behind Cloud Flare, so if its DNS is blocked, you cant reach dispensers.
67 |
68 | 3. Tor connections [OR] Orbot setup, again Cloud Flare has some weird issues with TOR setup, I'm looking into it.
69 |
70 | 5. **What all data is sent to Google if I'm logged in as Anonymous.**
71 |
72 | I won't lie, this is what and why I send these data to Google.
73 |
74 | a. Your complete build.prop
75 |
76 | Why ? Play Store is a chaos, the hierarchy of apis, abis, locale, geo so very complex in Android. A single app has multiple versions, for different sdk levels (K,L..O), architecture x86,x64,ARM,ARM64, then locales, then different OEM specific library support. These all together are used to make a decision as what exact app version Aurora Store should download. So its mandatory I cant avoid. However you may choose to spoof it with build prop of someone else, or with a device that has same configuration as yours.
77 |
78 | b. A list of your installed apps
79 |
80 | WTF ! Why ?
81 |
82 | Umm, quite obvious, if I need to download updates then I should tell Google that these are the apps I want to check updates for. Google's repo is very large, I can not afford to maintain a separate centralized server to maintain metadata.
83 |
84 | Recently I thought of an idea to tackle this other way, like when we send our app list, we would dope it with some random apps that we haven't even installed. Then check for updates and parse only the required app data. Smart ? No ! Google is way too smart. I'm open to discuss about it and may implement it, if it turns out to be useful.
85 |
86 | Join Aurora's Support Group on Telegram for more on this: [@AuroraSupport](tg://resolve?domain=AuroraSupport)
87 |
88 | Written by Rahul Patel, original article can be found [here](https://telegra.ph/Aurora-Store---Anonymous-Login-12-20-2).
89 |
--------------------------------------------------------------------------------
/src/de/guides/roadmap.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Roadmap
3 | description: Timeline of Aurora Store.
4 | lang: de
5 | meta:
6 | - property: og:title
7 | content: Anonymous Logins
8 | - property: og:description
9 | content: Timeline of Aurora Apps.
10 | - property: og:image
11 | content: /assets/undraw_roadmap.png
12 | - property: og:image:alt
13 | content: Roadmap Banner Image
14 | - property: og:url
15 | content: /de/guides/roadmap
16 | - property: og:locale
17 | content: de
18 | - property: twitter:card
19 | content: summary_large_image
20 | sidebar: true
21 | ---
22 |
23 | # Roadmap
24 |
25 | 
26 |
27 | The goal of Aurora Store is to provide users an alternative to the Google Play Store that works well, packed with important privacy features as well as stunning and pleasant-looking UI. Here is a list of the important stuff of what we've achieved and changed so far.
28 |
29 | Legend: **✅ Completed | ⏳ Work In Progress | ❓ Unknown Stage**
30 |
31 | ## Aurora Store
32 |
33 | The goal of Aurora Store is to provide users an alternative to Google Play Store - one that works well, is packed with important privacy features as well as having a stunning and pleasant-looking UI. Here is a list of the important stuff of what we've achieved and changed so far.
34 |
35 | ### version 4
36 |
37 | #### ✅ Adding session and native installer to Aurora Store
38 |
39 | With the arrival of Session installer, users are now able to install apps seamlessly if Aurora Store is installed as a system application while selecting this installation method. If Aurora Store is not a system app, it will act like the native package installer, but will merge split apks and apk bundles together into a single apk first.
40 |
41 | Native is the native package installer that Android comes with by default. This may help users with OEM roms like MIUI if the other installation methods do not work. Note that split and bundled apks will not work with this installation method.
42 |
43 | #### ✅ New UI
44 |
45 | Exciting new UI changes for the new version 😉
46 |
47 | #### ✅ Major Token Dispenser API changes and exclusive use for Aurora Store only!
48 |
49 | We have seen major issues while observing the main server, and it seems like it has been overloaded with high CPU usages during version 3 recently. Thus, the developer has been trying to counter this with a solution.
50 |
51 | After this build has been released, we will remove the dispenser for v3 completely, which is to help reduce the workload of the new server. The main dispenser server will also now be available for Aurora Store only.
52 |
53 | In addition to that, a rate-limiting function has been added. Spammers will be kept out from our server, which should help lower the chances of server downsides and decrease loading times.
54 |
55 | #### ✅ Add new device configurations for spoofing
56 |
57 | In this build, a few more device configs with newer versions of Android will be added for device spoofing, as some are rather outdated. This gives users the opportunity to install e.g. apps with features that are exclusively for Android 11, but not for your device. (Note that you have to have the same Android version for those features to work!)
58 |
59 | #### ✅ Support for Android 4.4+ (KitKat)
60 |
61 | Aurora Store now supports Android Kitkat!
62 |
63 | #### ⏳ Support for Android TV
64 |
65 | Android TV is on the todo list.
66 |
67 | #### ✅ Other new features!
68 |
69 | 1. You can browse streams similar to Play Store, i.e. For You, Editor's Choice (EC), Early Access (EA). EC & EA are not available on anonymous logins
70 | 2. App Library, so you can track your app install history.
71 | 3. App-on-Sale, uses a 3rd party API for index, but app data is fetched from Google's servers
72 | 4. A dedicated section for Games
73 | 5. A new improved App UI
74 | 6. A lot of under-the-hood improvements.
75 | 7. Rewritten in Kotlin
76 |
77 | #### ✅ Stuff that's changed
78 |
79 | Here are few things that will no longer be available or has changed:
80 |
81 | 1. Geo-spoof, would provide a companion app to facilitate the same, if required.
82 | 2. Favourite app, will add something named similar to WishList, limited to google login only.
83 | 3. Anonymous logins now use your device-config to create session, so your device-config is sent to my dispenser server. It may sound scary but it is not, here is a [sample](https://gitlab.com/AuroraOSS/gplayapi/-/blob/master/src/main/resources/op_8_pro.properties) of what I send to my dispenser in order to create a anonymous session.
84 |
85 | ### version 3
86 |
87 | #### ✅ Rewrite from scratch
88 |
89 | #### ✅ Add support for Aurora Services
90 |
91 | #### ✅ Add support for Split APKs
92 |
93 | #### ✅ Add in-app Download Manager
94 |
95 | #### ✅ New UI based on latest MD Guidelines
96 |
97 | #### ✅ Deploy dedicated token-dispenser
98 |
99 | #### ✅ Add Favourite Apps Manager
100 |
101 | #### ✅ Enforce proxy network on download requests
102 |
103 | #### ✅ Add support for AndroidTV
104 |
105 | #### ✅ Add translations
106 |
107 | #### ✅ Add option to use custom token dispensers (Settings → Network)
108 |
109 | #### ✅ Add option to install apps directly to work profile (only rooted users)
110 |
111 | ### version 2
112 |
113 | #### ✅ Add Device/Language/Country Spoof Option to allow accessing GeoRestricted Apps
114 |
115 | #### ✅ Add Filter to exclude Non-Market, F-Droid & Guardian Project Apps
116 |
117 | #### ✅ Refactor complete project to AndroidX
118 |
--------------------------------------------------------------------------------
/src/de/guides/server-status.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Server status
3 | description: Server statuses of dispensers for Aurora Store.
4 | lang: de
5 | meta:
6 | - property: og:title
7 | content: Server status
8 | - property: og:description
9 | content: Server statuses of dispensers for Aurora Store.
10 | - property: og:image
11 | content: /assets/undraw_server_status.png
12 | - property: og:image:alt
13 | content: Server Status Banner Image
14 | - property: og:url
15 | content: /de/guides/server-status
16 | - property: og:locale
17 | content: de
18 | - property: twitter:card
19 | content: summary_large_image
20 | sidebar: true
21 | ---
22 |
23 | # Server status
24 | 
25 |
26 | See the current status of the token dispenser servers below:
27 |
28 | :::: el-tabs
29 | ::: el-tab-pane label="Official servers"
30 |
31 | :::
32 | ::::
33 |
34 | A word from the Aurora Store team: Please do not spam our servers. If you do, we will block you _mercilessly_.
35 |
36 | ::: c-warning Recent News!
37 | With the release of Aurora Store v4, the server dispenser URL for v3 tokens is now obsolete. Please migrate to v4 or use your own Google account if you wish to still use v3.
38 | :::
39 |
40 | See real-time status and history [here](https://stats.uptimerobot.com/D6QpBHB11l).
41 |
42 |
--------------------------------------------------------------------------------
/src/de/guides/wiki-home.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Aurora Wiki
3 | description: Read the Docs for Aurora Apps.
4 | lang: de
5 | meta:
6 | - property: og:title
7 | content: Aurora Wiki
8 | - property: og:description
9 | content: Read the Docs for Aurora Apps.
10 | - property: og:image
11 | content: /assets/wiki_banner1200x680.png
12 | - property: og:image:alt
13 | content: Aurora Wiki Banner Image
14 | - property: og:url
15 | content: /de/guides/wiki-home
16 | - property: og:locale
17 | content: de
18 | - property: twitter:card
19 | content: summary_large_image
20 | sidebar: true
21 | ---
22 |
23 | # Welcome to the Aurora Wiki!
24 |
25 |
--------------------------------------------------------------------------------
/src/download/AuroraStore/README.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: DownloadPage
3 | title: Aurora Store
4 | description: An open-source alternative Google Play Store frontend with privacy features and clean UI.
5 | lang: en-GB
6 | meta:
7 | - property: og:title
8 | content: Aurora Store
9 | - property: og:description
10 | content: An open-source alternative Google Play Store frontend with privacy features and clean UI.
11 | - property: og:image
12 | content: /assets/storebanner1200x680.webp
13 | - property: og:image:alt
14 | content: Aurora Store Banner Image
15 | - property: og:url
16 | content: /download/AuroraStore/
17 | - property: og:locale
18 | content: en-GB
19 | - property: twitter:card
20 | content: summary_large_image
21 | sidebar: false
22 | ---
23 |
24 | # Aurora Store
25 |
26 | ## About
27 |
28 | Aurora Store is an open-source alternative Google Play Store frontend client with privacy and modern design in mind. Not only does Aurora Store download, update, and search for apps like the Play Store, it also empowers the user with useful features.
29 |
30 | ## Screenshots
31 |
32 |
33 |
34 | ## Features:
35 |
36 | - **Anonymous login**: Login anonymously so that you stay private.
37 | - **Google login**: access your paid apps and install beta apps.
38 | - **Device spoofing**: App not available for your device? Use available device configurations to spoof you device!
39 | - **Filter F-Droid app**: Don't want F-Droid apps to be in your update list? Use the filter to exclude them.
40 | - **Blacklist apps**: By blacklisting apps, Google will not know that the selected apps are installed on your device.
41 |
42 | ## Credits
43 |
44 | - [whyorean](https://gitlab.com/whyorean/) (Rahul Patel) for making the app.
45 |
46 | ## Known Bugs
47 |
48 | ::: guide Bugs
49 | - Root installation not working properly on Android 11 (R+)
50 | :::
51 |
52 | ## Terms Of Service
53 |
54 | Every user is required to read and agree to the Terms of Service before being able to use Aurora Store. You can read the Terms Of Service [here](//download/AuroraStore/terms-of-service/).
55 |
56 | ## Policy
57 |
58 | Please read our [Policy](/download/AuroraStore/policy/) to know what we data we require & collect from you and what we send to Google.
59 |
60 | ## Disclaimer
61 |
62 | Please read our [Disclaimer](/download/AuroraStore/disclaimer/) to know why what you do using Aurora Store is up to you and not us.
63 |
64 | As per [**Google Play Terms of Service §4**](https://play.google.com/intl/en-us_us/about/play-terms/index.html), under "Restrictions" there are a number of things that could potentially be used against you for the deactivation of your personal Google account that you want to remain using.
65 |
66 | ## Support Group
67 |
68 |
73 |
--------------------------------------------------------------------------------
/src/download/AuroraStore/disclaimer.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: DISCLAIMER
3 | description: Disclaimer for Aurora Store
4 | lang: en-GB
5 | meta:
6 | - property: og:title
7 | content: Disclaimer
8 | - property: og:description
9 | content: Disclaimer for Aurora Store
10 | - property: og:image
11 | content: /icons/disclaimer_icon.png
12 | - property: og:image:alt
13 | content: Aurora Store Disclaimer Banner Image
14 | - property: og:url
15 | content: /download/AuroraStore/disclaimer
16 | - property: og:locale
17 | content: en-GB
18 | - property: twitter:card
19 | content: summary
20 | sidebar: false
21 | ---
22 |
23 | # Disclaimer
24 |
25 | ### 1. Google Accounts.
26 |
27 | You hold yourself accountable if you are to use Aurora Store with your personal Google Account, which may cause your account to be blocked/blacklisted by Google. As per **Google Play's Terms Of Service §4 and §2**:
28 |
29 | #### §4 Rights and Restrictions
30 |
31 | > **Violation of License Terms.** If you violate any of the Content restriction provisions of the Terms, materially or repeatedly violate any of the other Terms or we are investigating you for suspected misconduct then Google may, without refund to you, terminate your access to Google Play, the Content or your Google Account and your rights under this licence will immediately terminate. We will notify you with the reason for our action unless we reasonably believe that to do so would cause Google or another person legal liability, would compromise an investigation, would compromise the operation of any Google products, services or systems, would cause harm to our users or would be in breach of the law or the direction of a legal enforcement authority. See Disabled Accounts in Section 2 for additional information.
32 | >
33 | > **Restrictions:** You may not:
34 | >
35 | > - display (in part or in whole) the Content as part of any public performance or display even if no fee is charged except (a) where such use would not constitute a copyright infringement or violate any other applicable right or (b) as specifically permitted and only in the exact manner provided.
36 | > - sell, rent, lease, redistribute, broadcast, transmit, communicate, modify, sublicense, transfer, assign any Content to any third party including with regard to any downloads of Content that you may obtain through Google Play except as specifically permitted and only in the exact manner provided.
37 | > - use Google Play or any Content in conjunction with any stream-ripping, stream capture or similar software to record or create a copy of any Content that is presented to you in streaming format.
38 | > - use Content as part of any service for sharing, lending or multi-person use, or for the purpose of any other institution, except as specifically permitted and only in the exact manner provided.
39 | > - attempt to, or assist, authorize or encourage others to circumvent, disable or defeat any of the security features or components that protect, obfuscate or otherwise restrict access to any Content or Google Play.
40 | > - remove any watermarks, labels or other legal or proprietary notices included in any Content, or attempt to modify any Content obtained through Google Play, including any modification for the purpose of disguising or changing any indications of the ownership or source of Content.
41 | >
42 | > **Multiple Accounts.** If you have multiple Google Accounts with different user names, in some cases you may transfer Content out of an account and into another account, provided you are the owner of each such account and provided Google has enabled a feature of the relevant service allowing such transfers.
43 |
44 | #### §2 Your Use of Google Play
45 | > **Disabled Accounts.** If Google disables access to your account in accordance with the Terms (for example if you materially or repeatedly violate the Terms), you may be prevented from accessing Google Play, your account details or any files or other Content that is stored with your account. See the Help Center for more information. If you are the family manager of a family on Google Play and Google disables access to your account, your family members may lose access to family features requiring a family group, such as a family payment method, family subscriptions, or Content shared by family members. If you are a family member of a family on Google Play and Google disables your account, your family members will lose access to Content you have shared with them.
46 |
47 | ### 2. Installing **Aurora Store** from third-party sources.
48 |
49 | You are to hold yourself responsible by installing **Aurora Store** from other sources other than our own, in which you do not blame us for malicious programs, device bricking or anything else. The following sources are the only official links we provide:
50 | - **F-Droid:** [https://f-droid.org/en/packages/com.aurora.store/](https://f-droid.org/en/packages/com.aurora.store/)
51 | - **AuroraOSS Website:** [https://auroraoss.com/download/](https://auroraoss.com/download/)
52 | - **Official Telegram Channel:** [https://t.me/AuroraOfficial](https://t.me/AuroraOfficial)
53 | - **GitLab:** [https://gitlab.com/AuroraOSS/AuroraStore/-/releases](https://gitlab.com/AuroraOSS/AuroraStore/-/releases)
54 |
55 | ### 3. Links in Aurora Store
56 |
57 | **AuroraOSS**, makes no claim or representation regarding, and accepts no responsibility for third party websites accessible by hyperlink from the Service or websites linking to the Service. When you leave the Service, you should be aware that these Terms and our policies no longer govern. The only links we provide are:
58 |
59 | - **Donation links** Bitcoin, Bitcoin Cash, Etherum, BHIM-UPI, PayPal & Liberapay links
60 | - **Repository sources** GitLab repository link
61 | - **xda-developers** Aurora Store xda-developers thread
62 | - **Telegram** Aurora Support group link
63 | - **F-Droid** Aurora Store in F-Droid repository link
64 |
65 | ### 4. Content
66 |
67 | We do not own any content within **Aurora Store**, all available content i.e. applications, information and links are provided "as is" directly from Google Play repositories/servers. For all content on **Aurora Store**, we don't review, verify or authenticate it, and it may include inaccuracies or false information. We make no representations, warranties, or guarantees relating to the quality, suitability, truth, accuracy or completeness of any content contained in the Service. You acknowledge sole responsibility for and assume all risk arising from your use of or reliance on any content.
68 |
69 |
--------------------------------------------------------------------------------
/src/download/AuroraStore/policy.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: POLICY
3 | description: Policy for Aurora Store
4 | lang: en-GB
5 | meta:
6 | - property: og:title
7 | content: Privacy Policy
8 | - property: og:description
9 | content: Policy for Aurora Store
10 | - property: og:image
11 | content: /icons/policy_icon.png
12 | - property: og:image:alt
13 | content: Aurora Store Policy Banner Image
14 | - property: og:url
15 | content: /download/AuroraStore/policy
16 | - property: og:locale
17 | content: en-GB
18 | - property: twitter:card
19 | content: summary
20 | sidebar: false
21 | ---
22 |
23 | # Aurora Store Privacy Policy Last Updated: **01.03.2021**
24 |
25 | ## User data sent to Google by default
26 |
27 | The following data is mandatory to make the Service function, all of which Google needs for **Aurora Store** to be able to receive required data:
28 |
29 | - **IP Address** which is bound to network request
30 | - **Timezone, MCC & MNC\*** are stripped & replaced with a random constant
31 | - **BUILD_CONFIG** includes the app details - package name, version-name, version-code
32 | - **BUILD** includes your device details, see for more info
33 |
34 | If you choose to use your own account, the following are added to the above:
35 |
36 | - **Account details** for Google sign-in verification
37 |
38 | We do not store, process or sell any of the collected data above. The data is sent to and processed by Google's servers directly untouched. All accounts being used within **Aurora Store** are saved onto the device as AAS Tokens & email pair for account verification. **No passwords** are saved to Aurora Store.
39 |
40 | **\*MCC**: Mobile Country Code; **MNC**: Mobile Network Code.
41 |
42 | ## User data sent to our server by default
43 |
44 | The only data being sent to our server are **IP addresses**. This is to ensure the functionality and stability of our server, which detects the amount of GET requests from an IP address and if deemed them as spamming, will be banned from our server, otherwise rate-limited. Rate-limiting lasts for an hour. If you keep going over the 20 request per hour limit, an additional hour to the rate-limiting will be added for every additional 20 requests. So do yourself a favour and don't do it.
45 |
46 | ## Changes To This Privacy Policy
47 |
48 | We may update our Privacy Policy from time to time. You are thus advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.
49 |
50 | ## Contact Us
51 |
52 | If you have any questions about this Privacy Policy, please contact us at **aurora.dev@gmail.com** or via our support groups on Telegram.
53 |
--------------------------------------------------------------------------------
/src/download/AuroraStore/terms-of-service.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Terms Of Service
3 | description: Terms of Service for Aurora Store
4 | lang: en-GB
5 | meta:
6 | - property: og:title
7 | content: Terms of Service
8 | - property: og:description
9 | content: Terms of Service for Aurora Store
10 | - property: og:image
11 | content: /icons/tos_icon.png
12 | - property: og:image:alt
13 | content: Aurora Store TOS Banner Image
14 | - property: og:url
15 | content: /download/AuroraStore/terms-of-service
16 | - property: og:locale
17 | content: en-GB
18 | - property: twitter:card
19 | content: summary
20 | sidebar: false
21 | ---
22 |
23 | # **Aurora Store** TERMS OF SERVICE
24 |
25 | Last Updated: **01.03.2021**
26 |
27 | These terms of service ("Terms") apply to your access and use of **Aurora Store**. Please read them carefully.
28 |
29 | ## Accepting these Terms
30 |
31 | If you access or use the Service, it means you agree to be bound by all of the terms below. So, before you use the Service, please read all of the terms. If you don't agree to all of the terms below, please do not use the Service. Also, if a term does not make sense to you, please let us know by e-mailing [auroraoss.dev@gmail.com](mailto:auroraoss.dev@gmail.com).
32 |
33 | ## Changes to these Terms
34 |
35 | We reserve the right to modify these Terms at any time. For instance, we may need to change these Terms if we come out with a new feature or for some other reason. Whenever we make changes to these Terms, the changes are effective **01.03.2021** after we post such revised Terms (indicated by revising the date at the top of these Terms) or upon your acceptance if we provide a mechanism for your immediate acceptance of the revised Terms (such as a click-through confirmation or acceptance button). It is your responsibility to check **Aurora Store** for changes to these Terms. If you continue to use the Service after the revised Terms go into effect, then you have accepted the changes to these Terms.
36 |
37 | ## Privacy Policy
38 |
39 | We have a privacy policy covering the collection, use, and disclosure of user information, which can be found [here](/download/AuroraStore/policy/).
40 |
41 | ## Copyright Policy
42 |
43 | We take intellectual property rights seriously, and by using a copyright policy in accordance with the GNU GENERAL PUBLIC LICENSE Version 3, we have adopted a policy of terminating, in appropriate circumstances and, at our sole discretion, access to the service for users who are deemed to be repeat infringers. Persons who wish to fork the Aurora Store project or copy code from the repository MUST comply with the used license. The license in use can be found [here](https://www.gnu.org/licenses/gpl-3.0.en.html)
44 |
45 | ## Disclaimer
46 |
47 | We have a disclaimer covering the use of our Service and the content within **Aurora Store**, which can be found [here](/download/AuroraStore/disclaimer/).
48 |
49 | ## Third-Party Services
50 |
51 | We provide users with two major third party services. Your use of the Service may also include the use of applications that are developed or owned by a third party. Your use of such third party applications, websites, and services is governed by that party's own terms of service or privacy policies. We encourage you to read the terms and conditions and privacy policy of any third party application, website or service that you visit or use.
52 |
53 | ## Token Dispenser Server
54 |
55 | We provide users with the ability to use anonymous accounts within **Aurora Store**, provided from our server as tokens. Your use of the Service agrees to not affect our server in any way deemed harmful or with malicious intent. We may occasionally ask contributors to provide us with accounts. You hereby acknowledge that the accounts you make for **Aurora Store** to be given entire access to **AuroraOSS** and to be stored on our server. This does not apply to non-anonymous accounts.
56 |
57 | If there are anonymous accounts that somehow are able to gain access to paid apps, you MUST directly inform us with:
58 | - **Proof**, be it a a screen recording, screenshots or other image/video material,
59 | - **Email address** of the account, which can be located at the Accounts page on the sidebar as **Accounts**,
60 | - **Time & Date** of when you encountered the breach.
61 | You can either message admins of the Telegram support group, direct message [@whyorean](tg://resolve?domain=whyorean) or via [auroraoss.dev@gmail.com](mailto:auroraoss.dev@gmail.com).
62 |
63 | If we find accounts with a breach like this, we will either:
64 | - remove that account from the dispenser server or,
65 | - fix the breach and generate a new AAS token for that account or,
66 | - shut down the dispenser server with a notice on our website blog and Telegram channel, stating what the problem is.
67 |
68 | We do not allow or support piracy and do not tolerate users who abuse our Service. We are obligated to block users from accessing the accounts. Our server, our rules.
69 |
70 | ## **Aurora Store** Materials
71 |
72 | We put a lot of effort into creating the Service including, the logo and all designs, text, graphics, pictures, metadata, information and other content (excluding content within **Aurora Store**). This property is owned by us or our licensors and it is protected by open-source licenses. We grant you the right to use it.
73 |
74 | ## Unavoidable Legal Stuff
75 |
76 | THE SERVICE AND ANY OTHER SERVICE AND CONTENT INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THE SERVICE ARE PROVIDED TO YOU ON AN AS IS OR AS AVAILABLE BASIS WITHOUT ANY REPRESENTATIONS OR WARRANTIES OF ANY KIND. WE DISCLAIM ANY AND ALL WARRANTIES AND REPRESENTATIONS (EXPRESS OR IMPLIED, ORAL OR WRITTEN) WITH RESPECT TO THE SERVICE AND CONTENT INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THE SERVICE WHETHER ALLEGED TO ARISE BY OPERATION OF LAW, BY REASON OF CUSTOM OR USAGE IN THE TRADE, BY COURSE OF DEALING OR OTHERWISE. IN NO EVENT WILL **AURORA OSS** BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY SPECIAL, INDIRECT, INCIDENTAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES OF ANY KIND ARISING OUT OF OR IN CONNECTION WITH THE SERVICE OR ANY OTHER SERVICE AND/OR CONTENT INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THE SERVICE, REGARDLESS OF THE FORM OF ACTION, WHETHER IN CONTRACT, TORT, STRICT LIABILITY OR OTHERWISE, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES OR ARE AWARE OF THE POSSIBILITY OF SUCH DAMAGES. OUR TOTAL LIABILITY FOR ALL CAUSES OF ACTION AND UNDER ALL THEORIES OF LIABILITY WILL BE LIMITED TO THE AMOUNT YOU PAID TO **AURORA OSS**. THIS SECTION WILL BE GIVEN FULL EFFECT EVEN IF ANY REMEDY SPECIFIED IN THIS AGREEMENT IS DEEMED TO HAVE FAILED OF ITS ESSENTIAL PURPOSE. You agree to defend, indemnify and hold us harmless from and against any and all costs, damages, liabilities, and expenses (including attorneys' fees, costs, penalties, interest and disbursements) we incur in relation to, arising from, or for the purpose of avoiding, any claim or demand from a third party relating to your use of the Service or the use of the Service by any person using your account, including any claim that your use of the Service violates any applicable law or regulation, or the rights of any third party, and/or your violation of these Terms. ## Termination If you breach any of these Terms, we have the right to suspend or disable your access to or use of the Service.
77 |
78 | ## Entire Agreement
79 |
80 | These Terms constitute the entire agreement between you and **AuroraOSS** regarding the use of the Service, superseding any prior agreements between you and **AuroraOSS** relating to your use of the Service.
81 |
82 | ## Feedback
83 |
84 | Please let us know what you think of the Service, these Terms and, in general, **Aurora Store**. When you provide us with any feedback, comments or suggestions about the Service, these Terms and, in general, **Aurora Store**, you irrevocably assign to us all of your right, title and interest in and to your feedback, comments and suggestions. If you discover or suspect any Service security breaches, please let us know as soon as possible.
85 |
86 | ## Questions & Contact Information
87 |
88 | Questions or comments about the Service may be directed to us at the email address [auroraoss.dev@gmail.com](mailto:auroraoss.dev@gmail.com).
--------------------------------------------------------------------------------
/src/download/AuroraWallpapers.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: DownloadPage
3 | title: Aurora Wallpapers
4 | description: Beautiful wallpapers readily available within your fingertips!
5 | lang: en-GB
6 | meta:
7 | - property: og:title
8 | content: Aurora Wallpapers
9 | - property: og:description
10 | content: Beautiful wallpapers readily available within your fingertips!
11 | - property: og:image
12 | content: /assets/storebanner1200x680.webp
13 | - property: og:image:alt
14 | content: Aurora Wallpapers Banner Image
15 | - property: og:url
16 | content: /download/AuroraWallpapers/
17 | - property: og:locale
18 | content: en-GB
19 | - property: twitter:card
20 | content: summary_large_image
21 | sidebar: false
22 | ---
23 |
24 | # Aurora Store
25 |
26 | ## About
27 |
28 | App Warden is an app utility manager for all your installed apps.
29 |
30 | ## Screenshots
31 |
32 |
33 |
34 | ## Features:
35 |
36 | - Generates report for all trackers & loggers present in app installed on device.
37 | - Advance profile based de-bloater, allowing to disable/uninstall/hide junks.
38 | - **Nuke it!** - Disable all trackers across the whole device automatically.
39 | - Show trackers hidden in an app with version history, powered by Exodus Privacy.
40 |
41 | ## Credits
42 |
43 | - [whyorean](https://gitlab.com/whyorean/) (Rahul Patel) for making the app.
44 |
45 | ## Known Bugs
46 |
47 | ## Disclaimer
48 |
49 | The developer of this application is not responsible for getting your device bricked or modifications you do. You are using this service at your own risk, so please do not blame the dev.
50 |
51 | ## Support Group
52 |
53 |
--------------------------------------------------------------------------------
/src/download/README.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: Downloads
3 | title: Downloads
4 | metaTitle: Downloads
5 | description: Download the latest Aurora Apps.
6 | meta:
7 | - name: keywords
8 | content: Download, Official, Android app, App Store, APK
9 | lang: en-GB
10 | ---
11 |
12 | # Downloads
13 |
14 | Download our latest apps here.
15 |
16 | ::: c-tip Tip!
17 | To know more about our apps, click on the app titles!
18 | :::
19 |
20 | ## [Aurora Store](/download/AuroraStore/)
21 |
22 | The latest stable version of **Aurora Store** was uploaded .
23 |
24 |
25 |
26 |
27 |
28 | ::: c-tip
29 | Older versions of **Aurora Store** (Stable & Nightly) can be found [here](https://files.auroraoss.com/AuroraStore/).
30 | :::
31 |
32 | ## [Aurora Droid](/download/AuroraDroid/)
33 |
34 | The latest stable version of **Aurora Droid** was uploaded .
35 |
36 |
37 |
38 |
39 |
40 | ::: c-tip
41 | Older versions of **Aurora Droid** (Stable & Nightly) can be found [here](https://files.auroraoss.com/AuroraDroid/).
42 | :::
43 |
44 | ## [App Warden](/download/AppWarden/)
45 |
46 | The latest version of **App Warden** was uploaded .
47 |
48 |
49 |
50 |
51 |
52 | ::: c-tip
53 | Older versions of **App Warden** can be found [here](https://files.auroraoss.com/AppWarden/Stable/). \
54 | Scripts can be found [here](https://files.auroraoss.com/AppWarden/Scripts/)
55 | :::
56 |
57 | ## [Aurora Wallpapers](/download/AuroraWallpapers/)
58 |
59 | The latest version of **Aurora Wallpapers** was uploaded .
60 |
61 |
62 |
63 |
64 |
65 | ::: c-tip
66 | Older versions of **Aurora Wallpapers** can be found [here](https://files.auroraoss.com/Wallpapers/).
67 | :::
68 |
--------------------------------------------------------------------------------
/src/faq/site-policy.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: SITE-POLICY
3 | description: Privacy Policy for AuroraOSS.com
4 | lang: en-GB
5 | meta:
6 | - property: og:title
7 | content: Privacy Policy
8 | - property: og:description
9 | content: Privacy Policy for AuroraOSS.com
10 | - property: og:image
11 | content: /icons/policy_icon.png
12 | - property: og:image:alt
13 | content: AuroraOSS Policy Banner Image
14 | - property: og:url
15 | content: /faq/site-policy
16 | - property: og:locale
17 | content: en-GB
18 | - property: twitter:card
19 | content: summary
20 | published: March 9, 2021
21 | sidebar: false
22 | search: false
23 | ---
24 |
25 | # Privacy Statement for AuroraOSS.com
26 |
27 | Effective date: **{{ $frontmatter.published }}**
28 |
29 | [[toc]]
30 |
31 | ## What information AuroraOSS does collect
32 |
33 | "User Personal Information" is any information about one of our Users which could, alone or together with other information, personally identify them or otherwise be reasonably linked or connected with them. Information like your Internet protocol (IP) address is collected within the category “User Personal Information.”
34 |
35 | User Personal Information does not include aggregated, non-personally identifying information that does not identify a User or cannot otherwise be reasonably linked or connected with them.
36 |
37 | ### Device information
38 |
39 | We may collect certain information about your device, such as its IP address, browser or client application information, language preference, operating system and application version, device type and ID, and device model and manufacturer. This information may include User Personal information.
40 |
41 | The reason for this is to help us differentiate between real users and bots, so that we can filter them out and block them from sending a certain amount of GET requests. Some bots use very old version of browsers such as Firefox, Chrome & other Chromium browsers, others use special techniques to make themselves look like real users. We do our best to minimize mixups
42 |
43 | ## What information AuroraOSS does _not_ collect
44 |
45 | We do not and have no means of collecting “[Sensitive Personal Information](https://gdpr-info.eu/art-9-gdpr/)”, such as personal data revealing racial or ethnic origin, political opinions, religious or philosophical beliefs, or trade union membership, and the processing of genetic data, biometric data for the purpose of uniquely identifying a natural person, data concerning health or data concerning a natural person’s sex life or sexual orientation.
46 |
47 | ## How AuroraOSS uses your information
48 |
49 | We use your information for the following purposes:
50 |
51 | - We store IP addresses if our server deems the IP 'harmful', due to the fact that a few individuals spam (meaning sending requests every second) our servers with GET requests, which caused some complications in the past.
52 | - We use Usage Information and [Device Information](#device-information) to better understand how our Users use GitHub and to improve our Website and server stability.
53 | - We limit our use of your User Personal Information to the purposes listed in this Privacy Statement. If we need to use your User Personal Information for other purposes, we will ask your permission first.
54 |
55 | ## Our use of Cookies
56 |
57 | We do not require any cookies, which automatically excludes us from being able to store, process or sell your data using cookies. We do however, utilise [localStorage](https://javascript.info/localstorage) for the sole purpose of switching between Light and Dark themes.
58 |
59 | ## Changes to our Privacy Statement
60 |
61 | Although most changes are likely to be minor, AuroraOSS may change our Privacy Statement from time to time. We will provide notification to Users of material changes to this Privacy Statement through our Website at least 30 days prior to the change taking effect by posting a notice on our home page. We will also update the repository to this website, which tracks all changes to this policy. For other changes to this Privacy Statement, we encourage Users to watch or to check our repository frequently.
62 |
63 | ## License
64 |
65 | This Privacy Statement is licensed under this [Creative Commons Zero](https://creativecommons.org/publicdomain/zero/1.0/) license. For details, see our site-policy repository.
66 |
67 | ## Translations
68 |
69 | Below are translations of this document into other languages. In the event of any conflict, uncertainty, or apparent inconsistency between any of those versions and the English version, this English version is the controlling version.
70 |
71 | - German: [Webseite-Richtlinien](/de/faq/site-policy/)
72 | - French: [Politique du site](/faq/site-policy/)
73 | - Spanish: [Política del sitio](/faq/site-policy/)
74 | - Portuguese: [Política do site](/faq/site-policy/)
75 | - Russian: [политика сайта](/faq/site-policy/)
76 | - Chinese: [网站政策](/faq/site-policy/)
77 | - Hindi: [वेबसाइट नीति](/faq/site-policy/)
78 |
79 | Please proceed to the [Contribution](/contribution/#translation) page for more info on translating this website.
80 |
81 | ## Contacting AuroraOSS
82 |
83 | Questions regarding AuroraOSS' Privacy Statement or information practices should be directed to our support information on the [contact page](/contact/).
84 |
--------------------------------------------------------------------------------
/src/guides/android-apps.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Android Apps
3 | description: Want to know more about android apps and how they get installed? This page might solve that curiosity of yours!
4 | lang: en-GB
5 | meta:
6 | - property: og:title
7 | content: Android Apps
8 | - property: og:description
9 | content: Want to know more about android apps and how they get installed? This page might solve that curiosity of yours!
10 | - property: og:image
11 | content: /assets/undraw_android.png
12 | - property: og:image:alt
13 | content: Android Banner Image
14 | - property: og:url
15 | content: /guides/system-app
16 | - property: og:locale
17 | content: en-GB
18 | - property: twitter:card
19 | content: summary_large_image
20 | sidebar: true
21 | ---
22 |
23 | # Android App Types
24 |
25 | As we all know, Android is influenced and maintained by Google.
26 |
27 |
28 | ## What is an APK?
29 |
30 | To understand the context of the following text under this section, you require some knowledge about APKs and how they function.
31 |
32 | APKs or .apk are Android App Packages, which include the logic, images, databases, language files, sound files, etc. are required to be able to install an app on your device. It's a compression package format specially designed for Android, just like `.zip` or `.tar.gz` for universal zip compressions.
33 |
34 | ## Android Universal App
35 |
36 |
37 | ## Android App Bundles (AAB)
38 |
39 | Just like APKs, AABs are a type of compression package which include the actual apk file.
40 |
41 | Hence the term "split apk".
42 |
43 |
44 | ### Aplication Binary Interface (ABI)
45 |
46 | The ABI instructs how the CPU interacts with the system at runtime, and this all depends on the CPU architecture e.g. arm64 or x86. This
47 |
48 | To know more on how ABIs work, read this [guide](https://developer.android.com/ndk/guides/abis).
49 |
50 | ### Localization resources (Languages)
51 |
52 | Localizing an application essentially means creating different string translations for each language the application should be in. When the application was shipped as a single APK using the old approach, it contained all localizations at once, even though there was hardly a need for that. App bundles optimize this process by delivering only the language resources that match the device’s system locales. However, if the user decides to change the system locale after the app is already installed, resources for missing languages will be automatically downloaded. For some applications, the localization case might go even further and include locale-specific videos or imagery. As a result, those applications will benefit even more from optimized bundle delivery.
53 |
54 | ### Screen density resources (DPI)
55 |
56 | An Android application should be able to run on a variety of different screen sizes and pixel densities. Android usually performs basic scaling and resizing to adapt a UI to different screens, but to ensure a better UX, additional work must be done.
57 |
58 | This usually includes the following:
59 |
60 | UI layouts depending on the screen configuration — for example, layouts specifically designed for watch, phone, tablet, or TV.
61 |
62 | Bitmaps to match each screen density.
63 |
64 | Icon drawables for each screen density if they are too complex for a mipmap drawable.
65 |
66 | Again, the older strategy with the single APK would’ve delivered all those resources at once, even though a device would not have had much use for most of them. But app bundles ensure that only those resources that correspond to a device’s screen size and density will be delivered.
67 |
68 |
69 | For more information about AABs, read the official guide on [Android Developers](https://developer.android.com/guide/app-bundle).
70 |
71 | ## Android Legacy Expansions (OBBs)
72 |
73 |
74 | ## Play Asset Delivery (PAD)
75 |
76 |
77 |
78 |
79 |
80 | We hope we did our best to break it down for you so that you have understood the fundamentals on how the Android app file packaging structure looks like and the .
--------------------------------------------------------------------------------
/src/guides/anonymous-logins.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Anonymous Logins
3 | description: A short explanation on how Anonymous Logins work.
4 | lang: en-GB
5 | meta:
6 | - property: og:title
7 | content: Anonymous Logins
8 | - property: og:description
9 | content: A short explanation on how Anonymous Logins work.
10 | - property: og:image
11 | content: /assets/undraw_authentication.png
12 | - property: og:image:alt
13 | content: Anonymous Logins Banner Image
14 | - property: og:url
15 | content: /guides/anonymous-logins
16 | - property: og:locale
17 | content: en-GB
18 | - property: twitter:card
19 | content: summary_large_image
20 | sidebar: true
21 | ---
22 |
23 | # Anonymous Logins
24 | 
25 |
26 | ## How does it work?
27 |
28 | **The Anonymous login feature is great for privacy enthusiasts; however, there are certain things you should know.**
29 |
30 | 1. **What is a Token Dispenser?**
31 |
32 | A token dispenser is a web client that has around 150 real google accounts (inclusive of all servers). It distributes the AuthToken[2] for anyone who makes a request to it in a defined format.
33 |
34 | So basically all dispensers have the email-password (now aas tokens) pairs on the server. When a user makes a request, the server logs in to google using provided dummy accounts, generates an authentication token and this token is given to the user.
35 |
36 | All the dispensers are configured to use dummy device profiles, default : Xiaomi Mi5.
37 |
38 | (Why Xiaomi ? Because I had this device when I first started android developement, nothing else. China has nothing to do with it. Chill !)
39 |
40 | 2. **What is an AuthToken?**
41 |
42 | In simple terms its a token that lets you access PlayStore service.
43 |
44 | There are other complementary tokens required to make the api work, but that's done via Aurora Store and not related to Dispensers, so I would prefer avoiding it.
45 |
46 | 3. **Why do Aurora Store always say "Session-expired"?**
47 |
48 | There are multiple things that may cause it:
49 |
50 | 1. Multiple users are logged in using same dummy account provide by the dispenser, in different geographic locations.
51 |
52 | 2. There is a limit for concurrent active login sessions, post that limit, Google invalidates all sessions.
53 |
54 | 3. Recently google started putting a "rate-limit" on the usage of api, so if it detects overuse of the api, it just invalidates the authentication token.
55 |
56 | How does Aurora reach the rate-limit ? The search logic I use now is just stupid greedy approach, but it works, so !
57 |
58 | I will improve it and try to match how exactly Play Store does it.
59 |
60 | 4. Why am I not able to login anonymously [OR] I'm able to login on device A and not on device B ?
61 |
62 | Again there can be multiple reasons:
63 |
64 | 1. Network configuration, make sure Aurora Store has access to internet.
65 |
66 | 2. Network filter, make sure you haven't blacklisted "Cloud Flare" all the dispenser are behind Cloud Flare, so if its DNS is blocked, you cant reach dispensers.
67 |
68 | 3. Tor connections [OR] Orbot setup, again Cloud Flare has some weird issues with TOR setup, I'm looking into it.
69 |
70 | 5. **What all data is sent to Google if I'm logged in as Anonymous.**
71 |
72 | I won't lie, this is what and why I send these data to Google.
73 |
74 | a. Your complete build.prop
75 |
76 | Why ? Play Store is a chaos, the hierarchy of apis, abis, locale, geo so very complex in Android. A single app has multiple versions, for different sdk levels (K,L..O), architecture x86,x64,ARM,ARM64, then locales, then different OEM specific library support. These all together are used to make a decision as what exact app version Aurora Store should download. So its mandatory I cant avoid. However you may choose to spoof it with build prop of someone else, or with a device that has same configuration as yours.
77 |
78 | b. A list of your installed apps
79 |
80 | WTF ! Why ?
81 |
82 | Umm, quite obvious, if I need to download updates then I should tell Google that these are the apps I want to check updates for. Google's repo is very large, I can not afford to maintain a separate centralized server to maintain metadata.
83 |
84 | Recently I thought of an idea to tackle this other way, like when we send our app list, we would dope it with some random apps that we haven't even installed. Then check for updates and parse only the required app data. Smart ? No ! Google is way too smart. I'm open to discuss about it and may implement it, if it turns out to be useful.
85 |
86 | Join Aurora's Support Group on Telegram for more on this: [@AuroraSupport](tg://resolve?domain=AuroraSupport)
87 |
88 | Written by Rahul Patel, original article can be found [here](https://telegra.ph/Aurora-Store---Anonymous-Login-12-20-2).
89 |
--------------------------------------------------------------------------------
/src/guides/roadmap.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Roadmap
3 | description: Timeline of Aurora Apps.
4 | lang: en-GB
5 | meta:
6 | - property: og:title
7 | content: Anonymous Logins
8 | - property: og:description
9 | content: Timeline of Aurora Apps.
10 | - property: og:image
11 | content: /assets/undraw_roadmap.png
12 | - property: og:image:alt
13 | content: Roadmap Banner Image
14 | - property: og:url
15 | content: /guides/roadmap
16 | - property: og:locale
17 | content: en-GB
18 | - property: twitter:card
19 | content: summary_large_image
20 | sidebar: true
21 | ---
22 |
23 | # Roadmap
24 |
25 | 
26 |
27 | Legend: **✅ Completed | ⏳ Work In Progress | ❓ Unknown Stage**
28 |
29 | ## Aurora Store
30 |
31 | The goal of Aurora Store is to provide users an alternative to Google Play Store - one that works well, is packed with important privacy features as well as having a stunning and pleasant-looking UI. Here is a list of the important stuff of what we've achieved and changed so far.
32 |
33 | ### version 4
34 |
35 | #### ✅ Adding session and native installer to Aurora Store
36 |
37 | With the arrival of Session installer, users are now able to install apps seamlessly if Aurora Store is installed as a system application while selecting this installation method. If Aurora Store is not a system app, it will act like the native package installer, but will merge split apks and apk bundles together into a single apk first.
38 |
39 | Native is the native package installer that Android comes with by default. This may help users with OEM roms like MIUI if the other installation methods do not work. Note that split and bundled apks will not work with this installation method.
40 |
41 | #### ✅ New UI
42 |
43 | Exciting new UI changes for the new version 😉
44 |
45 | #### ✅ Major Token Dispenser API changes and exclusive use for Aurora Store only!
46 |
47 | We have seen major issues while observing the main server, and it seems like it has been overloaded with high CPU usages during version 3 recently. Thus, the developer has been trying to counter this with a solution.
48 |
49 | After this build has been released, we will remove the dispenser for v3 completely, which is to help reduce the workload of the new server. The main dispenser server will also now be available for Aurora Store only.
50 |
51 | In addition to that, a rate-limiting function has been added. Spammers will be kept out from our server, which should help lower the chances of server downsides and decrease loading times.
52 |
53 | #### ✅ Add new device configurations for spoofing
54 |
55 | In this build, a few more device configs with newer versions of Android will be added for device spoofing, as some are rather outdated. This gives users the opportunity to install e.g. apps with features that are exclusively for Android 11, but not for your device. (Note that you have to have the same Android version for those features to work!)
56 |
57 | #### ✅ Support for Android 4.4+ (KitKat)
58 |
59 | Aurora Store now supports Android Kitkat!
60 |
61 | #### ⏳ Support for Android TV
62 |
63 | Android TV is on the todo list.
64 |
65 | #### ✅ Other new features!
66 |
67 | 1. You can browse streams similar to Play Store, i.e. For You, Editor's Choice (EC), Early Access (EA). EC & EA are not available on anonymous logins
68 | 2. App Library, so you can track your app install history.
69 | 3. App-on-Sale, uses a 3rd party API for index, but app data is fetched from Google's servers
70 | 4. A dedicated section for Games
71 | 5. A new improved App UI
72 | 6. A lot of under-the-hood improvements.
73 | 7. Rewritten in Kotlin
74 |
75 | #### ✅ Stuff that's changed
76 |
77 | Here are few things that will no longer be available or has changed:
78 |
79 | 1. Geo-spoof, would provide a companion app to facilitate the same, if required.
80 | 2. Favourite app, will add something named similar to WishList, limited to google login only.
81 | 3. Anonymous logins now use your device-config to create session, so your device-config is sent to my dispenser server. It may sound scary but it is not, here is a [sample](https://gitlab.com/AuroraOSS/gplayapi/-/blob/master/src/main/resources/op_8_pro.properties) of what I send to my dispenser in order to create a anonymous session.
82 |
83 | ### version 3
84 |
85 | #### ✅ Rewrite from scratch
86 |
87 | #### ✅ Add support for Aurora Services
88 |
89 | #### ✅ Add support for Split APKs
90 |
91 | #### ✅ Add in-app Download Manager
92 |
93 | #### ✅ New UI based on latest MD Guidelines
94 |
95 | #### ✅ Deploy dedicated token-dispenser
96 |
97 | #### ✅ Add Favourite Apps Manager
98 |
99 | #### ✅ Enforce proxy network on download requests
100 |
101 | #### ✅ Add support for AndroidTV
102 |
103 | #### ✅ Add translations
104 |
105 | #### ✅ Add option to use custom token dispensers (Settings → Network)
106 |
107 | #### ✅ Add option to install apps directly to work profile (only rooted users)
108 |
109 | ### version 2
110 |
111 | #### ✅ Add Device/Language/Country Spoof Option to allow accessing GeoRestricted Apps
112 |
113 | #### ✅ Add Filter to exclude Non-Market, F-Droid & Guardian Project Apps
114 |
115 | #### ✅ Refactor complete project to AndroidX
116 |
--------------------------------------------------------------------------------
/src/guides/server-status.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Server status
3 | description: Server statuses of dispensers for Aurora Store.
4 | lang: en-GB
5 | meta:
6 | - property: og:title
7 | content: Server status
8 | - property: og:description
9 | content: Server statuses of dispensers for Aurora Store.
10 | - property: og:image
11 | content: /assets/undraw_server_status.png
12 | - property: og:image:alt
13 | content: Server Status Banner Image
14 | - property: og:url
15 | content: /guides/server-status
16 | - property: og:locale
17 | content: en-GB
18 | - property: twitter:card
19 | content: summary_large_image
20 | sidebar: true
21 | ---
22 |
23 | # Server status
24 | 
25 |
26 | See the current status of the token dispenser servers below:
27 |
28 | :::: el-tabs
29 | ::: el-tab-pane label="Official servers"
30 |
31 | :::
32 | ::::
33 |
34 | A word from the Aurora Store team: Please do not spam our servers. If you do, we will block you _mercilessly_.
35 |
36 | ::: c-warning Recent News!
37 | With the release of Aurora Store v4, the server dispenser URL for v3 tokens is now obsolete. Please migrate to v4 or use your own Google account if you wish to still use v3.
38 | :::
39 |
40 | See real-time status and history [here](https://stats.uptimerobot.com/D6QpBHB11l).
41 |
42 |
--------------------------------------------------------------------------------
/src/guides/wiki-home.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Aurora Wiki
3 | description: Read the Docs for Aurora Apps.
4 | lang: en-GB
5 | meta:
6 | - property: og:title
7 | content: Aurora Wiki
8 | - property: og:description
9 | content: Read the Docs for Aurora Apps.
10 | - property: og:image
11 | content: /assets/wiki_banner1200x680.png
12 | - property: og:image:alt
13 | content: Aurora Wiki Banner Image
14 | - property: og:url
15 | content: /guides/wiki-home
16 | - property: og:locale
17 | content: en-GB
18 | - property: twitter:card
19 | content: summary_large_image
20 | sidebar: true
21 | ---
22 |
23 | # Welcome to the Aurora Wiki!
24 |
25 |