From 43326291d6bf5a0700fb2012ff6fd0b6a1677c4c Mon Sep 17 00:00:00 2001 From: turtledreams Date: Fri, 26 Jan 2024 22:01:38 +0900 Subject: [PATCH] example additions --- README.md | 8 ++++---- example/integration_test/base_queue_test.dart | 2 +- .../AP_200_notEnabledNothingWorking_test.dart | 2 +- .../AP_201_automaticAppStart_test.dart | 2 +- .../AP_202_manualAppStartTrigger_notUsed_test.dart | 2 +- .../AP_203_manualAppStartTrigger_correct_test.dart | 2 +- .../AP_204_FBTrackingEnabled_working_test.dart | 2 +- .../AP_205_AppStatOverride_automatic_test.dart | 2 +- .../AP_206_AppStartOverride_manual_test.dart | 2 +- .../AP_207A_enableFBAndStartTimeTracking_manual_test.dart | 2 +- .../AP_207B_enableFBAndStartTimeTracking_manual_test.dart | 2 +- .../scenario_device_id_init/2.sdk_type_test.dart | 2 +- example/pubspec.yaml | 2 +- 13 files changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index e818b83d..ca939ef1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -[![Codacy Badge](https://app.codacy.com/project/badge/Grade/7ab95afb3da8421ab499cc921e1381ac)](https://app.codacy.com/gh/Countly/countly-sdk-flutter-bridge/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade) +[![Codacy Badge](https://app.codacy.com/project/badge/Grade/7ab95afb3da8421ab499cc921e1381ac)](https://www.codacy.com/gh/Countly/countly-sdk-flutter-bridge/dashboard?utm_source=github.com&utm_medium=referral&utm_content=Countly/countly-sdk-flutter-bridge&utm_campaign=Badge_Grade) -# Countly Flutter SDK +# Countly Flutter SDK - No Push This repository contains the Countly Flutter SDK, which can be integrated into mobile Flutter applications. The Countly Flutter SDK is intended to be used with [Countly Lite](https://countly.com/lite), [Countly Flex](https://countly.com/flex), [Countly Enterprise](https://countly.com/enterprise). @@ -224,7 +224,7 @@ Countly.instance.userProfile.clear(); // Flutter SDK allows developers to enable/disable any feature at any time depending // on user consent. -// Consent values: sessions, events, views, location, crashes, attribution, users, push, starRating, apm, feedback, remoteConfig +// Consent values: sessions, events, views, location, crashes, attribution, users, starRating, apm, feedback, remoteConfig // Consent can be enabled during initialization final CountlyConfig config = CountlyConfig(SERVER_URL, APP_KEY) @@ -250,7 +250,7 @@ Countly.removeAllConsent(); From 2014 to 2020 it was maintained by Trinisoft Technologies developers (trinisofttechnologies@gmail.com). ## Security -Security is very important to us. If you discover any issue regarding security, please disclose the information responsibly by sending an email to security@count.ly and **not by creating a GitHub issue**. +Security is very important to us. If you discover any issue regarding security, please disclose the information responsibly by sending an email to security@countly.com and **not by creating a GitHub issue**. ## Badges If you like Countly, [why not use one of our badges](https://countly.com/brand-assets) and give a link back to us so others know about this wonderful platform? diff --git a/example/integration_test/base_queue_test.dart b/example/integration_test/base_queue_test.dart index d1595f1f..ae7cb312 100644 --- a/example/integration_test/base_queue_test.dart +++ b/example/integration_test/base_queue_test.dart @@ -1,5 +1,5 @@ import 'dart:convert'; -import 'package:countly_flutter/countly_flutter.dart'; +import 'package:countly_flutter_np/countly_flutter.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:integration_test/integration_test.dart'; import 'utils.dart'; diff --git a/example/integration_test/sc-AP-appPerformanceMonit/AP_200_notEnabledNothingWorking_test.dart b/example/integration_test/sc-AP-appPerformanceMonit/AP_200_notEnabledNothingWorking_test.dart index e6fffe89..e88eac1a 100644 --- a/example/integration_test/sc-AP-appPerformanceMonit/AP_200_notEnabledNothingWorking_test.dart +++ b/example/integration_test/sc-AP-appPerformanceMonit/AP_200_notEnabledNothingWorking_test.dart @@ -1,4 +1,4 @@ -import 'package:countly_flutter/countly_flutter.dart'; +import 'package:countly_flutter_np/countly_flutter.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:integration_test/integration_test.dart'; import '../utils.dart'; diff --git a/example/integration_test/sc-AP-appPerformanceMonit/AP_201_automaticAppStart_test.dart b/example/integration_test/sc-AP-appPerformanceMonit/AP_201_automaticAppStart_test.dart index f1c6ef94..78038b74 100644 --- a/example/integration_test/sc-AP-appPerformanceMonit/AP_201_automaticAppStart_test.dart +++ b/example/integration_test/sc-AP-appPerformanceMonit/AP_201_automaticAppStart_test.dart @@ -1,6 +1,6 @@ import 'dart:io'; -import 'package:countly_flutter/countly_flutter.dart'; +import 'package:countly_flutter_np/countly_flutter.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:integration_test/integration_test.dart'; import '../utils.dart'; diff --git a/example/integration_test/sc-AP-appPerformanceMonit/AP_202_manualAppStartTrigger_notUsed_test.dart b/example/integration_test/sc-AP-appPerformanceMonit/AP_202_manualAppStartTrigger_notUsed_test.dart index b7005ab6..f2bc7be7 100644 --- a/example/integration_test/sc-AP-appPerformanceMonit/AP_202_manualAppStartTrigger_notUsed_test.dart +++ b/example/integration_test/sc-AP-appPerformanceMonit/AP_202_manualAppStartTrigger_notUsed_test.dart @@ -1,4 +1,4 @@ -import 'package:countly_flutter/countly_flutter.dart'; +import 'package:countly_flutter_np/countly_flutter.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:integration_test/integration_test.dart'; import '../utils.dart'; diff --git a/example/integration_test/sc-AP-appPerformanceMonit/AP_203_manualAppStartTrigger_correct_test.dart b/example/integration_test/sc-AP-appPerformanceMonit/AP_203_manualAppStartTrigger_correct_test.dart index 1036591a..538e1b6e 100644 --- a/example/integration_test/sc-AP-appPerformanceMonit/AP_203_manualAppStartTrigger_correct_test.dart +++ b/example/integration_test/sc-AP-appPerformanceMonit/AP_203_manualAppStartTrigger_correct_test.dart @@ -1,4 +1,4 @@ -import 'package:countly_flutter/countly_flutter.dart'; +import 'package:countly_flutter_np/countly_flutter.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:integration_test/integration_test.dart'; import '../utils.dart'; diff --git a/example/integration_test/sc-AP-appPerformanceMonit/AP_204_FBTrackingEnabled_working_test.dart b/example/integration_test/sc-AP-appPerformanceMonit/AP_204_FBTrackingEnabled_working_test.dart index 295ccabf..d18672d3 100644 --- a/example/integration_test/sc-AP-appPerformanceMonit/AP_204_FBTrackingEnabled_working_test.dart +++ b/example/integration_test/sc-AP-appPerformanceMonit/AP_204_FBTrackingEnabled_working_test.dart @@ -1,4 +1,4 @@ -import 'package:countly_flutter/countly_flutter.dart'; +import 'package:countly_flutter_np/countly_flutter.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:integration_test/integration_test.dart'; import '../utils.dart'; diff --git a/example/integration_test/sc-AP-appPerformanceMonit/AP_205_AppStatOverride_automatic_test.dart b/example/integration_test/sc-AP-appPerformanceMonit/AP_205_AppStatOverride_automatic_test.dart index 11adedf2..2c932584 100644 --- a/example/integration_test/sc-AP-appPerformanceMonit/AP_205_AppStatOverride_automatic_test.dart +++ b/example/integration_test/sc-AP-appPerformanceMonit/AP_205_AppStatOverride_automatic_test.dart @@ -1,6 +1,6 @@ import 'dart:io'; -import 'package:countly_flutter/countly_flutter.dart'; +import 'package:countly_flutter_np/countly_flutter.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:integration_test/integration_test.dart'; import '../utils.dart'; diff --git a/example/integration_test/sc-AP-appPerformanceMonit/AP_206_AppStartOverride_manual_test.dart b/example/integration_test/sc-AP-appPerformanceMonit/AP_206_AppStartOverride_manual_test.dart index ab9b86f5..3bbbf6b2 100644 --- a/example/integration_test/sc-AP-appPerformanceMonit/AP_206_AppStartOverride_manual_test.dart +++ b/example/integration_test/sc-AP-appPerformanceMonit/AP_206_AppStartOverride_manual_test.dart @@ -1,4 +1,4 @@ -import 'package:countly_flutter/countly_flutter.dart'; +import 'package:countly_flutter_np/countly_flutter.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:integration_test/integration_test.dart'; import '../utils.dart'; diff --git a/example/integration_test/sc-AP-appPerformanceMonit/AP_207A_enableFBAndStartTimeTracking_manual_test.dart b/example/integration_test/sc-AP-appPerformanceMonit/AP_207A_enableFBAndStartTimeTracking_manual_test.dart index 12b91bae..fb875218 100644 --- a/example/integration_test/sc-AP-appPerformanceMonit/AP_207A_enableFBAndStartTimeTracking_manual_test.dart +++ b/example/integration_test/sc-AP-appPerformanceMonit/AP_207A_enableFBAndStartTimeTracking_manual_test.dart @@ -1,4 +1,4 @@ -import 'package:countly_flutter/countly_flutter.dart'; +import 'package:countly_flutter_np/countly_flutter.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:integration_test/integration_test.dart'; import '../utils.dart'; diff --git a/example/integration_test/sc-AP-appPerformanceMonit/AP_207B_enableFBAndStartTimeTracking_manual_test.dart b/example/integration_test/sc-AP-appPerformanceMonit/AP_207B_enableFBAndStartTimeTracking_manual_test.dart index d2a2494a..20c6c4d6 100644 --- a/example/integration_test/sc-AP-appPerformanceMonit/AP_207B_enableFBAndStartTimeTracking_manual_test.dart +++ b/example/integration_test/sc-AP-appPerformanceMonit/AP_207B_enableFBAndStartTimeTracking_manual_test.dart @@ -1,6 +1,6 @@ import 'dart:io'; -import 'package:countly_flutter/countly_flutter.dart'; +import 'package:countly_flutter_np/countly_flutter.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:integration_test/integration_test.dart'; import '../utils.dart'; diff --git a/example/integration_test/scenario_device_id_init/2.sdk_type_test.dart b/example/integration_test/scenario_device_id_init/2.sdk_type_test.dart index 160c3f64..d9e0f4fc 100644 --- a/example/integration_test/scenario_device_id_init/2.sdk_type_test.dart +++ b/example/integration_test/scenario_device_id_init/2.sdk_type_test.dart @@ -1,6 +1,6 @@ import 'dart:io'; -import 'package:countly_flutter/countly_flutter.dart'; +import 'package:countly_flutter_np/countly_flutter.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:integration_test/integration_test.dart'; import '../utils.dart'; diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 7348e128..bd6f1ca7 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -7,7 +7,7 @@ environment: sdk: ">=2.15.0 <3.0.0" dependencies: - countly_flutter: + countly_flutter_np: path: ../ # for no push variation use the line below instead of countly_flutter: # countly_flutter_np: