Skip to content

Commit

Permalink
Merge branch 'main' into extract_flush_manager
Browse files Browse the repository at this point in the history
  • Loading branch information
wzieba committed Oct 31, 2023
2 parents 40e93c9 + fcb6d7c commit d318c6b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
avd-name: macOS-avd-x86_64-31
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
script: ./gradlew :parsely:connectedCheck
script: ./gradlew :parsely:connectedDebugAndroidTest
- name: Publish build artifacts
uses: actions/upload-artifact@v3
if: always()
Expand Down
1 change: 0 additions & 1 deletion parsely/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ android {
exclude 'META-INF/LICENSE'
exclude 'META-INF/NOTICE'
}
testBuildType "debug"

publishing {
singleVariant('release') {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,8 @@ public class ParselyTracker {
private static final int QUEUE_SIZE_LIMIT = 50;
private static final int STORAGE_SIZE_LIMIT = 100;
private static final String STORAGE_KEY = "parsely-events.ser";
// emulator localhost
// private static final String ROOT_URL = "http://10.0.2.2:5001/";
/**
* @noinspection StringOperationCanBeSimplified
*/
@SuppressWarnings("StringOperationCanBeSimplified")
// private static final String ROOT_URL = "http://10.0.2.2:5001/".intern(); // emulator localhost
private static final String ROOT_URL = "https://p1.parsely.com/".intern();
protected ArrayList<Map<String, Object>> eventQueue;
private boolean isDebug;
Expand Down

0 comments on commit d318c6b

Please sign in to comment.