Skip to content

Commit

Permalink
Change package to clickpay
Browse files Browse the repository at this point in the history
  • Loading branch information
KhaledAlramam committed Jan 10, 2022
1 parent 3b86cfb commit d5ec231
Show file tree
Hide file tree
Showing 16 changed files with 57 additions and 57 deletions.
8 changes: 4 additions & 4 deletions .idea/flutter-sdk-bridge.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 19 additions & 20 deletions .idea/libraries/Dart_SDK.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/libraries/Flutter_Plugins.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

group 'com.paytabs.flutter_paytabs_bridge'
group 'com.paymentsdk.flutter_paymentsdk_bridge'
version '1.0'


Expand Down
2 changes: 1 addition & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.paytabs.flutter_paytabs_bridge">
package="com.paymentsdk.flutter_paymentsdk_bridge">
</manifest>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.paytabs.flutter_paytabs_bridge;
package com.paymentsdk.flutter_paymentsdk_bridge;

import android.app.Activity;
import android.content.Context;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.paytabs.flutter_paytabs_bridge;
package com.paymentsdk.flutter_paymentsdk_bridge;

public class ResponseWrapper<T> {
String status;
Expand Down
10 changes: 5 additions & 5 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import 'dart:async';
import 'dart:io' show Platform;

import 'package:flutter/material.dart';
import 'package:flutter_paytabs_bridge/BaseBillingShippingInfo.dart';
import 'package:flutter_paytabs_bridge/IOSThemeConfiguration.dart';
import 'package:flutter_paytabs_bridge/PaymentSdkApms.dart';
import 'package:flutter_paytabs_bridge/PaymentSdkConfigurationDetails.dart';
import 'package:flutter_paytabs_bridge/flutter_paytabs_bridge.dart';
import 'package:flutter_paymentsdk_bridge/BaseBillingShippingInfo.dart';
import 'package:flutter_paymentsdk_bridge/IOSThemeConfiguration.dart';
import 'package:flutter_paymentsdk_bridge/PaymentSdkApms.dart';
import 'package:flutter_paymentsdk_bridge/PaymentSdkConfigurationDetails.dart';
import 'package:flutter_paymentsdk_bridge/flutter_paytabs_bridge.dart';

void main() {
runApp(MyApp());
Expand Down
14 changes: 7 additions & 7 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages:
name: async
url: "https://pub.dartlang.org"
source: hosted
version: "2.8.1"
version: "2.8.2"
boolean_selector:
dependency: transitive
description:
Expand All @@ -21,7 +21,7 @@ packages:
name: characters
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0"
version: "1.2.0"
charcode:
dependency: transitive
description:
Expand Down Expand Up @@ -76,7 +76,7 @@ packages:
description: flutter
source: sdk
version: "0.0.0"
flutter_paytabs_bridge:
flutter_paymentsdk_bridge:
dependency: "direct main"
description:
path: ".."
Expand All @@ -94,7 +94,7 @@ packages:
name: matcher
url: "https://pub.dartlang.org"
source: hosted
version: "0.12.10"
version: "0.12.11"
meta:
dependency: transitive
description:
Expand Down Expand Up @@ -211,7 +211,7 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.4.2"
version: "0.4.3"
typed_data:
dependency: transitive
description:
Expand All @@ -225,7 +225,7 @@ packages:
name: vector_math
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.0"
version: "2.1.1"
win32:
dependency: transitive
description:
Expand All @@ -241,5 +241,5 @@ packages:
source: hosted
version: "0.2.0"
sdks:
dart: ">=2.13.0 <3.0.0"
dart: ">=2.14.0 <3.0.0"
flutter: ">=2.0.0"
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies:
flutter:
sdk: flutter

flutter_paytabs_bridge:
flutter_paymentsdk_bridge:
# When depending on this package from a real application you should use:
# flutter_paytabs_bridge: ^x.y.z
# See https://dart.dev/tools/pub/dependencies#version-constraints
Expand Down
2 changes: 1 addition & 1 deletion lib/BaseBillingShippingInfo.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import 'package:flutter_paytabs_bridge/flutter_paytabs_bridge.dart';
import 'flutter_paytabs_bridge.dart';

class BillingDetails {
String name, email, phone, addressLine, country, city, state, zipCode;
Expand Down
2 changes: 1 addition & 1 deletion lib/IOSThemeConfiguration.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:flutter/cupertino.dart';
import 'package:flutter_paytabs_bridge/flutter_paytabs_bridge.dart';
import 'flutter_paytabs_bridge.dart';

class IOSThemeConfigurations {
String? logoImage;
Expand Down
6 changes: 3 additions & 3 deletions lib/PaymentSdkConfigurationDetails.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'package:flutter/material.dart';
import 'package:flutter_paytabs_bridge/PaymentSdkApms.dart';
import 'package:flutter_paytabs_bridge/PaymentSdkTransactionClass.dart';
import 'package:flutter_paytabs_bridge/PaymentSdkTransactionType.dart';
import 'PaymentSdkApms.dart';
import 'PaymentSdkTransactionClass.dart';
import 'PaymentSdkTransactionType.dart';

import 'BaseBillingShippingInfo.dart';
import 'IOSThemeConfiguration.dart';
Expand Down
12 changes: 6 additions & 6 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages:
name: async
url: "https://pub.dartlang.org"
source: hosted
version: "2.8.1"
version: "2.8.2"
boolean_selector:
dependency: transitive
description:
Expand All @@ -21,7 +21,7 @@ packages:
name: characters
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0"
version: "1.2.0"
charcode:
dependency: transitive
description:
Expand Down Expand Up @@ -80,7 +80,7 @@ packages:
name: matcher
url: "https://pub.dartlang.org"
source: hosted
version: "0.12.10"
version: "0.12.11"
meta:
dependency: transitive
description:
Expand Down Expand Up @@ -197,7 +197,7 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.4.2"
version: "0.4.3"
typed_data:
dependency: transitive
description:
Expand All @@ -211,7 +211,7 @@ packages:
name: vector_math
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.0"
version: "2.1.1"
win32:
dependency: transitive
description:
Expand All @@ -227,5 +227,5 @@ packages:
source: hosted
version: "0.2.0"
sdks:
dart: ">=2.13.0 <3.0.0"
dart: ">=2.14.0 <3.0.0"
flutter: ">=2.0.0"
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: flutter_paytabs_bridge
name: flutter_paymentsdk_bridge
description: Flutter plugin for Paytabs.
version: 2.1.7
homepage: "https://github.com/paytabscom/flutter-sdk-bridge"
Expand All @@ -25,7 +25,7 @@ flutter:
plugin:
platforms:
android:
package: com.paytabs.flutter_paytabs_bridge
package: com.paymentsdk.flutter_paymentsdk_bridge
pluginClass: FlutterPaytabsBridgePlugin
ios:
pluginClass: FlutterPaytabsBridgePlugin
Expand Down

0 comments on commit d5ec231

Please sign in to comment.