Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,6 @@ plugins {
id 'com.mxalbert.gradle.jacoco-android' version '0.2.1'
}

//fullstory {
// org 'QNEN8'
// enabledVariants 'all'
// logLevel 'off'
//}

android {
compileSdkVersion 31

Expand Down
2 changes: 0 additions & 2 deletions app/src/main/java/com/example/vu/android/MyApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,6 @@ public void onCreate() {
this.launchUserFeedback(event.getEventId());
}

//event.setExtra("fullStoryURL", this.mCurrentActivity.getFullStorySessionURL());

if (SE == "tda") {
event.setFingerprints(Arrays.asList("{{ default }}", SE, BuildConfig.VERSION_NAME));
} else if (SE != null || SE.length() != 0) {
Expand Down
18 changes: 0 additions & 18 deletions app/src/main/java/com/example/vu/android/MyBaseActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@

import androidx.appcompat.app.AppCompatActivity;

//import com.fullstory.FS;
//import com.fullstory.FSOnReadyListener;
//import com.fullstory.FSSessionData;

import java.io.File;
import java.io.FileOutputStream;
import java.text.SimpleDateFormat;
Expand All @@ -29,24 +25,10 @@
public class MyBaseActivity extends AppCompatActivity {

protected MyApplication mMyApp ;
protected String FS_sessionURL = null;

// @Override
// public void onReady(FSSessionData sessionData) {
// // Use either sessionData.getCurrentSessionURL()
// // or FS.getCurrentSessionURL() here to retrieve session URL
// //String sessionUrlfromData = sessionData.getCurrentSessionURL();
// FS_sessionURL = FS.getCurrentSessionURL();
// }

// public String getFullStorySessionURL(){
// return this.FS_sessionURL;
// }

protected void onCreate (Bundle savedInstanceState) {
super.onCreate(savedInstanceState) ;
mMyApp = (MyApplication) this .getApplicationContext() ;
// FS.setReadyListener(this);
}
protected void onResume () {
super.onResume() ;
Expand Down
2 changes: 0 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,11 @@ buildscript {
google()
jcenter()
mavenCentral()
maven { url "https://maven.fullstory.com" }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0"
classpath "io.github.howardpang:androidNativeBundle:1.1.4"
classpath 'com.fullstory:gradle-plugin-local:1.12.1'
}
}

Expand Down