-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: Add
News Media Scan
flavor (#549)
## Proposed Changes - Update application based on designs | Light | Dark | | ----------- | ----------- | | ![01_onboarding_2](https://github.com/ooni/probe-android/assets/17911892/77b28ed1-a0fc-4b50-bf53-35edbc5c7264) | . | | ![01_onboarding_2](https://github.com/ooni/probe-android/assets/17911892/77b28ed1-a0fc-4b50-bf53-35edbc5c7264) | . | | ![02_onboarding_2_q1](https://github.com/ooni/probe-android/assets/17911892/3694018b-2abd-4f22-8c6b-d353cf08251c) | . | | ![02_onboarding_2_q2](https://github.com/ooni/probe-android/assets/17911892/f1c1773c-a598-43b3-be36-c62bf0e70a96) | . | | ![03_automated_testing](https://github.com/ooni/probe-android/assets/17911892/4988e76d-0269-4faf-a9b3-7d96eb2ebfe1) | . | | ![04_crash_report](https://github.com/ooni/probe-android/assets/17911892/06e21c44-d456-4317-837b-c2c0adf03289) | . | | ![05_default_settings](https://github.com/ooni/probe-android/assets/17911892/81ca2ddf-d346-467e-a3a3-b745c48bb393) | . | | ![06_dashboard](https://github.com/ooni/probe-android/assets/17911892/7872db1e-c63f-4566-b86e-4d6a202a811e) | ![06_dashboard](https://github.com/ooni/probe-android/assets/17911892/aa9dcb44-72f9-48ea-b1f7-f5f39a0dbf1e) | | ![07_test_results](https://github.com/ooni/probe-android/assets/17911892/a1fa4b53-d626-4eab-a461-1c30f953a2d9) | ![07_test_results](https://github.com/ooni/probe-android/assets/17911892/af57360b-76ef-4525-8744-88e5f001a24d) | | ![08_test_results_dash](https://github.com/ooni/probe-android/assets/17911892/5326fec5-b56a-41a6-80eb-0f4e1592dab8) | ![08_test_results_dash](https://github.com/ooni/probe-android/assets/17911892/5f0e3980-c570-43e2-8812-1d584bbc48d8) | | ![08_test_results_webconnectivity](https://github.com/ooni/probe-android/assets/17911892/24080695-5adb-477e-9cae-3994ab849f7e) | ![08_test_results_webconnectivity](https://github.com/ooni/probe-android/assets/17911892/2dabcb40-fc66-4065-9fde-bed6bc081a01) | | ![09_settings](https://github.com/ooni/probe-android/assets/17911892/417d1cd5-0e55-4502-a74b-0b1edc55bfb9) | ![09_settings](https://github.com/ooni/probe-android/assets/17911892/5f5d3bc5-d696-4af0-b01f-d55b1ba81176) | | ![10_info](https://github.com/ooni/probe-android/assets/17911892/9cfd248a-17b3-4f90-ad94-5ac663d75263) | ![10_info](https://github.com/ooni/probe-android/assets/17911892/9e26f817-29a4-4f18-b9f5-ef39a505452b) | # Tasks - [x] Test card coloring. - [x] Onboarding colours. - [x] Grainy images. - [x] About page. --------- Co-authored-by: Simone Basso <bassosimone@gmail.com>
- Loading branch information
1 parent
42b0bc7
commit 3106d03
Showing
114 changed files
with
5,637 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools"> | ||
<application> | ||
<activity | ||
android:name=".activity.InfoActivity" | ||
android:exported="false" | ||
android:label="@string/Settings_About_Label" | ||
android:parentActivityName=".activity.PreferenceActivity" | ||
android:screenOrientation="userPortrait" | ||
android:theme="@style/Theme.MaterialComponents.Light.DarkActionBar.App.NoActionBar"> | ||
<intent-filter> | ||
<action android:name=".activity.InfoActivity" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".activity.ProxyActivity" | ||
android:exported="false" | ||
android:label="Proxy" | ||
android:parentActivityName=".activity.PreferenceActivity" | ||
android:screenOrientation="userPortrait" | ||
android:theme="@style/Theme.MaterialComponents.Light.DarkActionBar.App"> | ||
<intent-filter> | ||
<action android:name=".activity.ProxyActivity" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".activity.CustomWebsiteActivity" | ||
android:exported="false" | ||
android:label="@string/Settings_Websites_CustomURL_Title" | ||
android:parentActivityName=".activity.PreferenceActivity" | ||
android:screenOrientation="userPortrait"> | ||
<intent-filter> | ||
<action android:name=".activity.CustomWebsiteActivity" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".activity.LogActivity" | ||
android:exported="false" | ||
android:label="LogActivity" | ||
android:parentActivityName=".activity.PreferenceActivity"> | ||
<intent-filter> | ||
<action android:name=".activity.LogActivity" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
</application> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Changes required. | ||
|
||
- [] Translation updates | ||
- [] Onboarding override |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# News Media Scan Dev | ||
This is a collection of resources to be used by the News Media Scan specific flavors of the application. | ||
A corresponding directory exits in [app/src/ooni](../../ooni). |
Oops, something went wrong.