This repository has been archived by the owner on Oct 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
19dd9de
commit b474de1
Showing
8 changed files
with
157 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
|
||
<include | ||
android:id="@+id/include" | ||
layout="@layout/toolbar" /> | ||
|
||
|
||
<android.support.constraint.Guideline | ||
android:id="@+id/guideline3" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:orientation="horizontal" | ||
app:layout_constraintGuide_percent="0.8813187" /> | ||
|
||
<ScrollView | ||
android:id="@+id/scroll_view" | ||
android:layout_width="0dp" | ||
android:layout_height="0dp" | ||
android:clipToPadding="true" | ||
android:fillViewport="true" | ||
app:layout_constraintBottom_toTopOf="@+id/guideline3" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toBottomOf="@+id/include"> | ||
|
||
<include layout="@layout/my_layout" /> | ||
</ScrollView> | ||
|
||
<com.google.android.gms.ads.AdView | ||
android:id="@+id/adView" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
app:layout_constraintBottom_toBottomOf="parent" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toBottomOf="@+id/guideline3" /> | ||
|
||
</android.support.constraint.ConstraintLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
|
||
<android.support.constraint.Guideline | ||
android:id="@+id/guideline" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:orientation="horizontal" | ||
app:layout_constraintGuide_percent="0.5" /> | ||
|
||
<TextView | ||
android:id="@+id/textView2" | ||
android:layout_width="0dp" | ||
android:layout_height="0dp" | ||
app:layout_constraintBottom_toTopOf="@+id/guideline" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toTopOf="parent" /> | ||
|
||
<ProgressBar | ||
android:id="@+id/progressBar2" | ||
style="?android:attr/progressBarStyle" | ||
android:layout_width="69dp" | ||
android:layout_height="67dp" | ||
android:layout_marginBottom="8dp" | ||
android:layout_marginEnd="8dp" | ||
android:layout_marginStart="8dp" | ||
android:layout_marginTop="8dp" | ||
app:layout_constraintBottom_toTopOf="@+id/guideline" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toTopOf="parent" /> | ||
|
||
<Button | ||
android:id="@+id/button" | ||
android:layout_width="116dp" | ||
android:layout_height="104dp" | ||
android:text="Buy Pack" | ||
android:paddingTop="15dp" | ||
android:drawableTop="@drawable/ic_external" | ||
android:textStyle="bold" | ||
app:layout_constraintBottom_toTopOf="@+id/button3" | ||
app:layout_constraintEnd_toStartOf="@+id/button2" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toTopOf="@+id/guideline" /> | ||
|
||
<Button | ||
android:id="@+id/button2" | ||
android:layout_width="116dp" | ||
android:layout_height="104dp" | ||
android:text="Usage History" | ||
android:paddingTop="15dp" | ||
android:drawableTop="@drawable/ic_external" | ||
android:textStyle="bold" | ||
app:layout_constraintBottom_toTopOf="@+id/button4" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toEndOf="@+id/button" | ||
app:layout_constraintTop_toTopOf="@+id/guideline" /> | ||
|
||
<Button | ||
android:id="@+id/button3" | ||
android:layout_width="116dp" | ||
android:layout_height="104dp" | ||
android:text="Offer" | ||
android:paddingTop="15dp" | ||
android:drawableTop="@drawable/ic_external" | ||
android:textStyle="bold" | ||
app:layout_constraintBottom_toBottomOf="parent" | ||
app:layout_constraintEnd_toStartOf="@+id/button4" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toBottomOf="@+id/button" /> | ||
|
||
<Button | ||
android:id="@+id/button4" | ||
android:layout_width="116dp" | ||
android:layout_height="104dp" | ||
android:text="More" | ||
android:paddingTop="15dp" | ||
android:drawableTop="@drawable/ic_external" | ||
android:textStyle="bold" | ||
app:layout_constraintBottom_toBottomOf="parent" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toEndOf="@+id/button3" | ||
app:layout_constraintTop_toBottomOf="@+id/button2" /> | ||
|
||
</android.support.constraint.ConstraintLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,12 @@ | ||
{ | ||
"latestVersion": "2.0.0", | ||
"latestVersionCode": "200", | ||
"url": "https://github.com/QuadTriangle/BuyDataPack/releases/download/v2.0.0/BuyDataPack-v2.0.0.apk", | ||
"latestVersion": "2.0.1", | ||
"latestVersionCode": "201", | ||
"url": "https://github.com/QuadTriangle/BuyDataPack/releases/download/v2.0.1/BuyDataPack-v2.0.1.apk", | ||
"releaseNotes": [ | ||
"- added persisted login with local logout", | ||
"- fix timeout after effects", | ||
"- support android 4.0.3", | ||
"- fix a crash on huawei", | ||
"- added a crash handler", | ||
"- added registration and forgot password links", | ||
"- added a drawer", | ||
"- enable rotation on buy pack activity", | ||
"- added a data and account balance checker", | ||
"- added offer", | ||
"- added usage history" | ||
"- fix login issues", | ||
"- fix usage history", | ||
"- handle some errors", | ||
"- change locale dialog on first start", | ||
"- added sms permission rationale" | ||
] | ||
} |