-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat: Add News Media Scan
flavor
#549
Merged
Merged
Changes from all commits
Commits
Show all changes
54 commits
Select commit
Hold shift + click to select a range
36cc6f8
Initial protorype for DW Media Probe
aanorbel bd06bc6
added sample logo
aanorbel 87191eb
Merge branch 'master' of github.com:ooni/probe-android into dw-media-…
aanorbel 2c1887b
updated with actual project information
aanorbel 2097475
Merge branch 'master' of github.com:ooni/probe-android into dw-media-…
aanorbel 0b17422
modified preferences
aanorbel 383a55f
modified default preferrences
aanorbel 9dfe80d
updated logo scaling for info page
aanorbel 28885eb
Merge branch 'master' of github.com:ooni/probe-android into dw-media-…
aanorbel 39b485f
updated version system
aanorbel 50bc494
updated enabled categories
aanorbel 013c5fd
Merge branch 'master' of github.com:ooni/probe-android into dw-media-…
aanorbel f02efb7
changed provider authorities
aanorbel 4da10f3
Merge branch 'master' of github.com:ooni/probe-android into dw-media-…
aanorbel d49ed61
Merge branch 'master' of github.com:ooni/probe-android into dw-media-…
aanorbel 1d14339
fix: webconectivity progress error and updated default database for d…
aanorbel f8fe1c5
Merge branch 'master' of github.com:ooni/probe-android into dw-media-…
aanorbel 47175e5
Merge branch 'master' of github.com:ooni/probe-android into dw-media-…
aanorbel 50b4fa6
changed overides based on new properties in app
aanorbel dfc2753
Updated logo
aanorbel f006382
Merge branch 'issue/1989-update' of github.com:ooni/probe-android int…
aanorbel 6b7b0a9
updated preference intents
aanorbel 1e9e3dc
updated onboarding page
aanorbel 981699c
updated info activity
aanorbel d4390cf
updated theme with night mode colors
aanorbel 9c34754
updated dialog and strings
aanorbel 782e5f9
Updated dashboard logo to use xml file and update dashboard layout
aanorbel 254322a
Updated string overides for onboarding pages
aanorbel bf75c4b
Updated the theme for `WebConnectivity` to use the base color theme f…
aanorbel d3a51bf
Updated dashboard to remove disabled cards based on build config
aanorbel 69b7170
Updated about activity
aanorbel 90d1326
Updated copy to use latest from DW Team
aanorbel 8e7b12e
Updated copy
aanorbel dd58288
Updated copy and removed unnecesary text
aanorbel 1a3751b
Updated asset animation and about page
aanorbel 39cb657
Updated icon and resource file
aanorbel 9e1cf64
Updated version code
aanorbel bb5f327
Merge branch 'master' of github.com:ooni/probe-android into dw-media-…
aanorbel 4964560
Update app for release 3.8.5
aanorbel 4650b5a
Merge branch 'releases/3.8.5' of github.com:ooni/probe-android into d…
aanorbel 50f9d4b
Chore: Updated flavor definition to allow resource separation (#634)
aanorbel 38d85b5
Merge branch 'master' of github.com:ooni/probe-android into dw-media-…
aanorbel a16dd05
Updated app to display disabled dashboard items based on build config
aanorbel b919961
Updated translations
aanorbel 57a90cb
Merge branch 'master' of github.com:ooni/probe-android into dw-media-…
aanorbel b0d0f5d
Merge branch 'master' of github.com:ooni/probe-android into dw-media-…
aanorbel ca23927
chore: Updated translations for News Media Scan
aanorbel 2f1406f
Merge branch 'master' of github.com:ooni/probe-android into dw-media-…
aanorbel 7fbfd60
fix(NMS): update supported languages
aanorbel ca5ee3f
chore: remove bundle splitting for languages.
aanorbel f150e8d
chore: update language code
aanorbel 6906084
fix: language decoding from string representation
aanorbel 2a30bc4
chore: updated ci flow to include news media scan
aanorbel 5700b4c
Merge branch 'master' of github.com:ooni/probe-android into dw-media-…
aanorbel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you test whether it's possible to install the dw-flavoured-app and ooniprobe side by side? As far as I know, it is currently not possible to install OONI Probe stable and OONI Probe experimental side by side. While that may be acceptable because it's only us who install the experimental app, not allowing installation side by side will be a bit more confusing for people. That said, also allowing installing side-by-side is weird because we are going to have tow ~ooniprobe apps competing for collecting measurements. Did you spend time thinking about which would be the best way to handle this side by side scenario?