Skip to content

Commit

Permalink
change library package
Browse files Browse the repository at this point in the history
  • Loading branch information
Stiliyan committed Mar 29, 2019
1 parent 11216fd commit 97d8f9e
Show file tree
Hide file tree
Showing 22 changed files with 64 additions and 120 deletions.
Binary file added .idea/caches/build_file_checksums.ser
Binary file not shown.
29 changes: 29 additions & 0 deletions .idea/codeStyles/Project.xml

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

22 changes: 0 additions & 22 deletions .idea/compiler.xml

This file was deleted.

3 changes: 0 additions & 3 deletions .idea/copyright/profiles_settings.xml

This file was deleted.

3 changes: 0 additions & 3 deletions .idea/dictionaries/kamen_troshev.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/encodings.xml

This file was deleted.

61 changes: 5 additions & 56 deletions .idea/misc.xml

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

2 changes: 1 addition & 1 deletion .idea/modules.xml

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

@@ -1,4 +1,4 @@
package eu.leupau.myposmobilecheckouttestapp;
package com.mypos.myposmobilecheckouttestapp;

import android.content.Context;
import android.support.test.InstrumentationRegistry;
Expand All @@ -21,6 +21,6 @@ public void useAppContext() throws Exception {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();

assertEquals("eu.leupau.myposmobilecheckouttestapp", appContext.getPackageName());
assertEquals("com.mypos.myposmobilecheckouttestapp", appContext.getPackageName());
}
}
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="eu.leupau.myposmobilecheckouttestapp">
package="com.mypos.myposmobilecheckouttestapp">

<application
android:allowBackup="true"
Expand Down
@@ -1,4 +1,4 @@
package eu.leupau.myposmobilecheckouttestapp;
package com.mypos.myposmobilecheckouttestapp;

import android.os.Parcel;
import android.os.Parcelable;
Expand Down
@@ -1,4 +1,4 @@
package eu.leupau.myposmobilecheckouttestapp;
package com.mypos.myposmobilecheckouttestapp;

import android.app.AlertDialog;
import android.content.DialogInterface;
Expand All @@ -18,10 +18,10 @@
import java.util.Comparator;
import java.util.Set;

import eu.leupau.mobilepaymentssdk.CartItem;
import eu.leupau.mobilepaymentssdk.MyPos;
import eu.leupau.mobilepaymentssdk.PurchaseActivity;
import eu.leupau.mobilepaymentssdk.StoredCardModel;
import com.mypos.mobilepaymentssdk.CartItem;
import com.mypos.mobilepaymentssdk.MyPos;
import com.mypos.mobilepaymentssdk.PurchaseActivity;
import com.mypos.mobilepaymentssdk.StoredCardModel;

/**
* Created by kamen.troshev on 19.12.2016 г..
Expand Down
@@ -1,4 +1,4 @@
package eu.leupau.myposmobilecheckouttestapp;
package com.mypos.myposmobilecheckouttestapp;

import android.content.Context;
import android.support.annotation.NonNull;
Expand All @@ -11,7 +11,7 @@

import java.util.ArrayList;

import eu.leupau.mobilepaymentssdk.CartItem;
import com.mypos.mobilepaymentssdk.CartItem;

/**
* Created by kamen.troshev on 19.12.2016 г..
Expand Down
@@ -1,4 +1,4 @@
package eu.leupau.myposmobilecheckouttestapp;
package com.mypos.myposmobilecheckouttestapp;

import android.content.Context;
import android.support.annotation.NonNull;
Expand Down
@@ -1,4 +1,4 @@
package eu.leupau.myposmobilecheckouttestapp;
package com.mypos.myposmobilecheckouttestapp;

import android.app.AlertDialog;
import android.content.Context;
Expand Down Expand Up @@ -32,12 +32,12 @@
import java.util.LinkedHashSet;
import java.util.Set;

import eu.leupau.mobilepaymentssdk.IPCGetTransactionStatus;
import eu.leupau.mobilepaymentssdk.MyPos;
import eu.leupau.mobilepaymentssdk.RefundActivity;
import eu.leupau.mobilepaymentssdk.StoreCardActivity;
import eu.leupau.mobilepaymentssdk.StoredCardModel;
import eu.leupau.mobilepaymentssdk.UpdateCardActivity;
import com.mypos.mobilepaymentssdk.IPCGetTransactionStatus;
import com.mypos.mobilepaymentssdk.MyPos;
import com.mypos.mobilepaymentssdk.RefundActivity;
import com.mypos.mobilepaymentssdk.StoreCardActivity;
import com.mypos.mobilepaymentssdk.StoredCardModel;
import com.mypos.mobilepaymentssdk.UpdateCardActivity;

public class MainActivity extends AppCompatActivity implements View.OnClickListener{

Expand Down
@@ -1,4 +1,4 @@
package eu.leupau.myposmobilecheckouttestapp;
package com.mypos.myposmobilecheckouttestapp;

import org.json.JSONObject;

Expand Down
@@ -1,4 +1,4 @@
package eu.leupau.myposmobilecheckouttestapp;
package com.mypos.myposmobilecheckouttestapp;

import android.content.SharedPreferences;
import android.os.Bundle;
Expand Down
@@ -1,4 +1,4 @@
package eu.leupau.myposmobilecheckouttestapp;
package com.mypos.myposmobilecheckouttestapp;

import android.content.Context;
import android.support.annotation.NonNull;
Expand Down
@@ -1,4 +1,4 @@
package eu.leupau.myposmobilecheckouttestapp;
package com.mypos.myposmobilecheckouttestapp;

import android.app.Activity;
import android.content.Context;
Expand All @@ -16,7 +16,7 @@
import java.util.LinkedHashSet;
import java.util.Set;

import eu.leupau.mobilepaymentssdk.Currency;
import com.mypos.mobilepaymentssdk.Currency;

/**
* Created by kamen.troshev on 19.12.2016 г..
Expand Down Expand Up @@ -130,12 +130,12 @@ public static void addFocusChangeListener(final Context context, final TextView
@Override
public void onFocusChange(View view, boolean focused) {
if( focused){
title.setTextColor(ContextCompat.getColor(context, eu.leupau.mobilepaymentssdk.R.color.myposFocusedColor));
underline.setBackgroundColor(ContextCompat.getColor(context, eu.leupau.mobilepaymentssdk.R.color.myposFocusedColor));
title.setTextColor(ContextCompat.getColor(context, com.mypos.mobilepaymentssdk.R.color.myposFocusedColor));
underline.setBackgroundColor(ContextCompat.getColor(context, com.mypos.mobilepaymentssdk.R.color.myposFocusedColor));
}
else{
title.setTextColor(ContextCompat.getColor(context, eu.leupau.mobilepaymentssdk.R.color.myposEdtTitleTextColor));
underline.setBackgroundColor(ContextCompat.getColor(context, eu.leupau.mobilepaymentssdk.R.color.myposUnderlineColor));
title.setTextColor(ContextCompat.getColor(context, com.mypos.mobilepaymentssdk.R.color.myposEdtTitleTextColor));
underline.setBackgroundColor(ContextCompat.getColor(context, com.mypos.mobilepaymentssdk.R.color.myposUnderlineColor));
}
}
});
Expand Down
@@ -1,4 +1,4 @@
package eu.leupau.myposmobilecheckouttestapp;
package com.mypos.myposmobilecheckouttestapp;

import org.junit.Test;

Expand Down
Binary file modified mobilepaymentssdk.aar
Binary file not shown.
Binary file modified mobilepaymentssdk/mobilepaymentssdk.aar
Binary file not shown.

0 comments on commit 97d8f9e

Please sign in to comment.