This repository has been archived by the owner on Jan 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
26 changed files
with
290 additions
and
49 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
|
||
<resources> | ||
<!--Replace placeholder ID with your tracking ID--> | ||
<string name="ga_trackingId">UA-44695784-1</string> | ||
|
||
<!--Enable automatic activity tracking--> | ||
<bool name="ga_autoActivityTracking">true</bool> | ||
|
||
<!--Enable automatic exception tracking--> | ||
<bool name="ga_reportUncaughtExceptions">true</bool> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,27 @@ | ||
package com.exposuresoftware.xsandos; | ||
|
||
import com.google.analytics.tracking.android.EasyTracker; | ||
|
||
import android.app.Activity; | ||
import android.os.Bundle; | ||
|
||
public class SettingsActivity extends Activity { | ||
private static String TAG = "Xs And Os - Settings"; | ||
|
||
//private static String TAG = "Xs And Os - Settings"; | ||
|
||
public void onCreate( Bundle savedInstanceState ) { | ||
super.onCreate( savedInstanceState ); | ||
getFragmentManager().beginTransaction().replace( android.R.id.content, new SettingsFragment() ) | ||
.commit(); | ||
} | ||
|
||
public void onStart() { | ||
super.onStart(); | ||
EasyTracker.getInstance(this).activityStart(this); | ||
} | ||
|
||
public void onStop() { | ||
super.onStop(); | ||
EasyTracker.getInstance(this).activityStop(this); | ||
} | ||
} |
Oops, something went wrong.