Skip to content

Commit

Permalink
Fix links in README (close #557)
Browse files Browse the repository at this point in the history
PR #558
  • Loading branch information
matus-tomlein committed Nov 11, 2022
1 parent 2ed0c5e commit b001900
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Expand Up @@ -4,7 +4,7 @@ The Snowplow Android Tracker is maintained by the Engineering team at Snowplow A

We are extremely grateful for all contributions we receive, whether that is reporting an issue or a change to the code which can be made in the form of a pull request.

For support requests, please use our community support Discourse forum: https://discourse.snowplowanalytics.com/.
For support requests, please use our community support Discourse forum: https://discourse.snowplow.io/.

## Setting up an Environment

Expand All @@ -16,7 +16,7 @@ You should ensure you are comfortable building and testing the existing release

### Creating an issue

The project contains an issue template which should help guiding you through the process. However, please keep in mind that support requests should go to our Discourse forum: https://discourse.snowplowanalytics.com/ and not GitHub issues.
The project contains an issue template which should help guiding you through the process. However, please keep in mind that support requests should go to our Discourse forum: https://discourse.snowplow.io/ and not GitHub issues.

It's also a good idea to log an issue before starting to work on a pull request to discuss it with the maintainers. A pull request is just one solution to a problem and it is often a good idea to talk about the problem with the maintainers first.

Expand Down Expand Up @@ -75,6 +75,6 @@ The @snowplowcla bot will guide you through the process.

### Community support requests

Please do not log an issue if you are asking for support, all of our community support requests go through our Discourse forum: https://discourse.snowplowanalytics.com/.
Please do not log an issue if you are asking for support, all of our community support requests go through our Discourse forum: https://discourse.snowplow.io/.

Posting your problem there ensures more people will see it and you should get support faster than creating a new issue on GitHub. Please do create a new issue on GitHub if you think you've found a bug though!
Posting your problem there ensures more people will see it and you should get support faster than creating a new issue on GitHub. Please do create a new issue on GitHub if you think you've found a bug though!
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -54,10 +54,10 @@ See the License for the specific language governing permissions and
limitations under the License.


[website]: https://snowplowanalytics.com
[website]: https://snowplow.io
[snowplow]: https://github.com/snowplow/snowplow
[docs]: https://docs.snowplowanalytics.com/
[mobile-docs]: https://docs.snowplowanalytics.com/docs/collecting-data/collecting-from-own-applications/mobile-trackers/
[docs]: https://docs.snowplow.io/
[mobile-docs]: https://docs.snowplow.io/docs/collecting-data/collecting-from-own-applications/mobile-trackers/

[gh-actions]: https://github.com/snowplow/snowplow-objc-tracker/actions
[gh-actions-image]: https://github.com/snowplow/snowplow-android-tracker/workflows/Build/badge.svg
Expand All @@ -71,10 +71,10 @@ limitations under the License.
[release-image]: https://img.shields.io/github/v/release/snowplow/snowplow-android-tracker?sort=semver
[releases]: https://github.com/snowplow/snowplow-android-tracker/releases

[setup-docs]: https://docs.snowplowanalytics.com/docs/collecting-data/collecting-from-own-applications/mobile-trackers/mobile-trackers-v3-0/quick-start-guide/#tab-android-tracker
[setup-docs]: https://docs.snowplow.io/docs/collecting-data/collecting-from-own-applications/mobile-trackers/installation-and-set-up/
[setup-docs-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/setup.png

[tech-docs]: https://docs.snowplowanalytics.com/docs/collecting-data/collecting-from-own-applications/mobile-trackers/mobile-trackers-v3-0/introduction/
[tech-docs]: https://docs.snowplow.io/docs/collecting-data/collecting-from-own-applications/mobile-trackers/
[tech-docs-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/techdocs.png

[api-docs]: https://snowplow.github.io/snowplow-android-tracker/
Expand Down
Expand Up @@ -171,7 +171,7 @@ public void onClick(View v) {
if (sessionController != null) {
sessionController.pause();
}
String url = "https://snowplowanalytics.com/";
String url = "https://snowplow.io/";
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
CustomTabsIntent customTabsIntent = builder.build();
customTabsIntent.launchUrl(Demo.this, Uri.parse(url));
Expand Down Expand Up @@ -319,7 +319,7 @@ private boolean setupWithLocalConfig() {
GlobalContextsConfiguration gcConfiguration = new GlobalContextsConfiguration(null);
Map<String, Object> pairs = new HashMap<>();
addToMap("id", "snowplow", pairs);
addToMap("email", "info@snowplowanalytics.com", pairs);
addToMap("email", "info@snowplow.io", pairs);
gcConfiguration.add("ruleSetExampleTag", new GlobalContext(Collections.singletonList(new SelfDescribingJson(SCHEMA_IDENTIFY, pairs))));

Snowplow.createTracker(getApplicationContext(),
Expand Down
Expand Up @@ -59,8 +59,8 @@ public static void trackAll(@NonNull TrackerController tracker) {
}

private static void trackDeepLink(TrackerController tracker) {
DeepLinkReceived event = new DeepLinkReceived("http://snowplowanalytics.com/path?param=value&param2=value2")
.referrer("http://snowplowanalytics.com/path?param=value&param2=value2");
DeepLinkReceived event = new DeepLinkReceived("http://snowplow.io/path?param=value&param2=value2")
.referrer("http://snowplow.io/path?param=value&param2=value2");
tracker.track(event);
}

Expand Down
Expand Up @@ -45,7 +45,7 @@ public void testJSONToConfigurations() throws JSONException {
String config = "{\"$schema\":\"http://iglucentral.com/schemas/com.snowplowanalytics.mobile/remote_config/jsonschema/1-0-0\","
+ "\"configurationVersion\":12,\"configurationBundle\": ["
+ "{\"namespace\": \"default1\","
+ "\"networkConfiguration\": {\"endpoint\":\"https://fake.snowplowanalytics.com\",\"method\":\"get\"},"
+ "\"networkConfiguration\": {\"endpoint\":\"https://fake.snowplow.io\",\"method\":\"get\"},"
+ "\"trackerConfiguration\": {\"applicationContext\":false,\"screenContext\":false},"
+ "\"sessionConfiguration\": {\"backgroundTimeout\":60,\"foregroundTimeout\":60}"
+ "},"
Expand Down
Expand Up @@ -175,7 +175,7 @@ public void testByteLimitPostSet() {
}

public void testUpdatingEmitterSettings() throws InterruptedException {
String uri = "snowplowanalytics.com";
String uri = "snowplow.io";
Emitter emitter = new Emitter(getContext(), uri, new Emitter.EmitterBuilder()
.option(Single)
.method(POST)
Expand Down
Expand Up @@ -163,7 +163,7 @@ private synchronized static String retrieveUserId(Context context, SessionState
// calling it Installation_UserID in order to remark that it isn't related to the session context.
// Although, for legacy, we need to copy its value in the Session_UserID of the session context
// as the session context schema (and related data modelling) requires it.
// For further details: https://discourse.snowplowanalytics.com/t/rfc-mobile-trackers-v2-0
// For further details: https://discourse.snowplow.io/t/rfc-mobile-trackers-v2-0
SharedPreferences generalPref = context.getSharedPreferences(TrackerConstants.SNOWPLOW_GENERAL_VARS, Context.MODE_PRIVATE);
String storedUserId = generalPref.getString(TrackerConstants.INSTALLATION_USER_ID, null);
if (storedUserId != null) {
Expand Down

0 comments on commit b001900

Please sign in to comment.