Skip to content

Commit ace9198

Browse files
committed
Change packages to hyperdevs. Update dependencies
1 parent ff904b1 commit ace9198

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+239
-123
lines changed

.idea/copyright/Apache_2_0.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

+12-5
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3434
### Security
3535
- No security issues fixed!
3636

37+
## [2.0.0] - 2021-04-28
38+
### Changed
39+
- Changed repo ownership to [hyperdevs-team](https://github.com/hyperdevs-team). Thanks [bq](https://github.com/bq) for all the work!
40+
- Changed package names from `com.bq.*` to `com.hyperdevs.*`
41+
- Updated dependencies
42+
3743
## [1.1.0] - 2020-11-05
3844
### Added
3945
- Add in-app update stale status (added in `play-core` 1.6.5)
@@ -60,8 +66,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6066
### Added
6167
- Initial release.
6268

63-
[Unreleased]: https://github.com/bq/android-app-updates-helper/compare/1.1.0...HEAD
64-
[1.1.0]: https://github.com/bq/android-app-updates-helper/compare/1.0.2...1.1.0
65-
[1.0.2]: https://github.com/bq/android-app-updates-helper/compare/1.0.1...1.0.2
66-
[1.0.1]: https://github.com/bq/android-app-updates-helper/compare/1.0.0...1.0.1
67-
[1.0.0]: https://github.com/bq/android-app-updates-helper/releases/tag/1.0.0
69+
[Unreleased]: https://github.com/hyperdevs-team/android-app-updates-helper/compare/2.0.0...HEAD
70+
[2.0.0]: https://github.com/hyperdevs-team/android-app-updates-helper/compare/1.1.0...2.0.0
71+
[1.1.0]: https://github.com/hyperdevs-team/android-app-updates-helper/compare/1.0.2...1.1.0
72+
[1.0.2]: https://github.com/hyperdevs-team/android-app-updates-helper/compare/1.0.1...1.0.2
73+
[1.0.1]: https://github.com/hyperdevs-team/android-app-updates-helper/compare/1.0.0...1.0.1
74+
[1.0.0]: https://github.com/hyperdevs-team/android-app-updates-helper/releases/tag/1.0.0

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Android App Updates Helper
2-
[![Release](https://jitpack.io/v/bq/android-app-updates-helper.svg)](https://jitpack.io/#bq/android-app-updates-helper)
2+
[![Release](https://jitpack.io/v/hyperdevs-team/android-app-updates-helper.svg)](https://jitpack.io/#hyperdevs-team/android-app-updates-helper)
33

44
This utility library aims to help Android developers to use the [Google Play In-App Updates API](https://developer.android.com/guide/app-bundle/in-app-updates) in an easy way.
55

@@ -37,7 +37,7 @@ Add the following dependencies to your app or library's `build.gradle`:
3737

3838
```groovy
3939
dependencies {
40-
implementation "com.github.bq:android-app-updates-helper:1.1.0"
40+
implementation "com.github.hyperdevs-team:android-app-updates-helper:2.0.0"
4141
}
4242
```
4343
</details>
@@ -47,7 +47,7 @@ dependencies {
4747

4848
```kotlin
4949
dependencies {
50-
implementation("com.github.bq:android-app-updates-helper:1.1.0")
50+
implementation("com.github.hyperdevs-team:android-app-updates-helper:2.0.0")
5151
}
5252
```
5353
</details>
@@ -123,12 +123,13 @@ and will set the application ID and signing configurations for you.
123123
* **[Daniel Sánchez Ceinos](https://github.com/danielceinos)** - *Contributor*
124124

125125
## Acknowledgements
126-
The work in this respository up to April 28th, 2021 was done by [bq](https://github.com/bq)
126+
The work in this repository up to April 28th, 2021 was done by [bq](https://github.com/bq).
127+
Thanks for all the work!!
127128

128129
## License
129130
This project is licensed under the Apache Software License, Version 2.0.
130131
```
131-
Copyright (C) 2021 Hyperdevs
132+
Copyright (C) 2021 HyperDevs
132133
133134
Copyright (C) 2019 BQ
134135

app/build.gradle

+15-13
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/*
2+
* Copyright (C) 2021 HyperDevs
3+
*
24
* Copyright (C) 2019 BQ
35
*
46
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -14,12 +16,12 @@
1416
* limitations under the License.
1517
*/
1618

17-
apply plugin: 'com.android.application'
19+
apply plugin: "com.android.application"
1820

19-
apply plugin: 'kotlin-android'
20-
apply plugin: 'kotlin-android-extensions'
21+
apply plugin: "kotlin-android"
22+
apply plugin: "kotlin-android-extensions"
2123

22-
apply plugin: 'com.gladed.androidgitversion'
24+
apply plugin: "com.gladed.androidgitversion"
2325

2426
apply from: "$rootDir/gradle/properties_utils.gradle"
2527

@@ -82,7 +84,7 @@ android {
8284

8385
release {
8486
minifyEnabled false
85-
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
87+
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
8688
signingConfig signingConfigs.localRelease
8789
}
8890
}
@@ -103,17 +105,17 @@ android {
103105

104106
dependencies {
105107
implementation project(":lib")
106-
implementation fileTree(dir: 'libs', include: ['*.jar'])
108+
implementation fileTree(dir: "libs", include: ["*.jar"])
107109

108110
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
109111

110-
implementation 'androidx.appcompat:appcompat:1.2.0'
111-
implementation 'androidx.core:core-ktx:1.3.2'
112-
implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
112+
implementation "androidx.appcompat:appcompat:1.2.0"
113+
implementation "androidx.core:core-ktx:1.3.2"
114+
implementation "androidx.constraintlayout:constraintlayout:2.0.4"
113115

114-
testImplementation 'junit:junit:4.13'
116+
testImplementation "junit:junit:4.13.2"
115117

116-
androidTestImplementation 'androidx.test:runner:1.3.0'
117-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
118-
implementation 'com.google.android.material:material:1.2.1'
118+
androidTestImplementation "androidx.test:runner:1.3.0"
119+
androidTestImplementation "androidx.test.espresso:espresso-core:3.3.0"
120+
implementation "com.google.android.material:material:1.3.0"
119121
}

app/src/androidTest/java/com/bq/appupdateshelper/ExampleInstrumentedTest.kt renamed to app/src/androidTest/java/com/hyperdevs/appupdateshelper/ExampleInstrumentedTest.kt

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/*
2+
* Copyright (C) 2021 HyperDevs
3+
*
24
* Copyright (C) 2019 BQ
35
*
46
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -14,7 +16,7 @@
1416
* limitations under the License.
1517
*/
1618

17-
package com.bq.appupdateshelper
19+
package com.hyperdevs.appupdateshelper
1820

1921
import androidx.test.InstrumentationRegistry
2022
import androidx.test.runner.AndroidJUnit4

app/src/main/AndroidManifest.xml

+24-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,25 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
~ Copyright (C) 2021 HyperDevs
4+
~
5+
~ Copyright (C) 2019 BQ
6+
~
7+
~ Licensed under the Apache License, Version 2.0 (the "License");
8+
~ you may not use this file except in compliance with the License.
9+
~ You may obtain a copy of the License at
10+
~
11+
~ http://www.apache.org/licenses/LICENSE-2.0
12+
~
13+
~ Unless required by applicable law or agreed to in writing, software
14+
~ distributed under the License is distributed on an "AS IS" BASIS,
15+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
~ See the License for the specific language governing permissions and
17+
~ limitations under the License.
18+
-->
19+
220
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
321
xmlns:tools="http://schemas.android.com/tools"
4-
package="com.bq.appupdateshelper_app">
22+
package="com.hyperdevs.appupdateshelper.app">
523

624
<application
725
android:allowBackup="false"
@@ -12,20 +30,20 @@
1230
android:theme="@style/AppTheme"
1331
tools:ignore="GoogleAppIndexingWarning">
1432

15-
<activity android:name=".MainActivity">
33+
<activity android:name="com.hyperdevs.appupdateshelper.app.MainActivity">
1634
<intent-filter>
1735
<action android:name="android.intent.action.MAIN"/>
1836
<category android:name="android.intent.category.LAUNCHER"/>
1937
</intent-filter>
2038
</activity>
2139

22-
<activity android:name=".immediate.ImmediateUpdateActivity"/>
40+
<activity android:name="com.hyperdevs.appupdateshelper.app.immediate.ImmediateUpdateActivity"/>
2341

24-
<activity android:name=".flexible.FlexibleUpdateActivity"/>
42+
<activity android:name="com.hyperdevs.appupdateshelper.app.flexible.FlexibleUpdateActivity"/>
2543

26-
<activity android:name=".fragment.FragmentUpdateActivity"/>
44+
<activity android:name="com.hyperdevs.appupdateshelper.app.fragment.FragmentUpdateActivity"/>
2745

28-
<activity android:name=".fake.FakeUpdateActivity"/>
46+
<activity android:name="com.hyperdevs.appupdateshelper.app.fake.FakeUpdateActivity"/>
2947

3048
</application>
3149

app/src/main/kotlin/com/bq/appupdateshelper_app/MainActivity.kt renamed to app/src/main/kotlin/com/hyperdevs/appupdateshelper/app/MainActivity.kt

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/*
2-
* Copyright (C) 2020 BQ
2+
* Copyright (C) 2021 HyperDevs
3+
*
4+
* Copyright (C) 2019 BQ
35
*
46
* Licensed under the Apache License, Version 2.0 (the "License");
57
* you may not use this file except in compliance with the License.
@@ -14,16 +16,16 @@
1416
* limitations under the License.
1517
*/
1618

17-
package com.bq.appupdateshelper_app
19+
package com.hyperdevs.appupdateshelper.app
1820

1921
import android.os.Bundle
2022
import android.widget.Button
2123
import androidx.appcompat.app.AppCompatActivity
22-
import com.bq.appupdateshelper_app.databinding.MainActivityBinding
23-
import com.bq.appupdateshelper_app.fake.FakeUpdateActivity
24-
import com.bq.appupdateshelper_app.flexible.FlexibleUpdateActivity
25-
import com.bq.appupdateshelper_app.fragment.FragmentUpdateActivity
26-
import com.bq.appupdateshelper_app.immediate.ImmediateUpdateActivity
24+
import com.hyperdevs.appupdateshelper.app.databinding.MainActivityBinding
25+
import com.hyperdevs.appupdateshelper.app.fake.FakeUpdateActivity
26+
import com.hyperdevs.appupdateshelper.app.flexible.FlexibleUpdateActivity
27+
import com.hyperdevs.appupdateshelper.app.fragment.FragmentUpdateActivity
28+
import com.hyperdevs.appupdateshelper.app.immediate.ImmediateUpdateActivity
2729

2830
class MainActivity : AppCompatActivity() {
2931
private lateinit var binding: MainActivityBinding

app/src/main/kotlin/com/bq/appupdateshelper_app/fake/FakeUpdateActivity.kt renamed to app/src/main/kotlin/com/hyperdevs/appupdateshelper/app/fake/FakeUpdateActivity.kt

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/*
2+
* Copyright (C) 2021 HyperDevs
3+
*
24
* Copyright (C) 2019 BQ
35
*
46
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -14,7 +16,7 @@
1416
* limitations under the License.
1517
*/
1618

17-
package com.bq.appupdateshelper_app.fake
19+
package com.hyperdevs.appupdateshelper.app.fake
1820

1921
import android.content.Context
2022
import android.content.Intent
@@ -23,20 +25,20 @@ import android.os.Handler
2325
import android.util.Log
2426
import android.widget.Button
2527
import androidx.appcompat.app.AppCompatActivity
26-
import com.bq.appupdateshelper.AppUpdateInfoResult
27-
import com.bq.appupdateshelper.AppUpdateInstallState.Status.*
28-
import com.bq.appupdateshelper.FakeAppUpdatesHelper
29-
import com.bq.appupdateshelper_app.databinding.FakeUpdateActivityBinding
30-
import com.bq.appupdateshelper_app.R
31-
import com.bq.appupdateshelper_app.misc.showToast
28+
import com.hyperdevs.appupdateshelper.AppUpdateInfoResult
29+
import com.hyperdevs.appupdateshelper.AppUpdateInstallState.Status.*
30+
import com.hyperdevs.appupdateshelper.FakeAppUpdatesHelper
31+
import com.hyperdevs.appupdateshelper.app.databinding.FakeUpdateActivityBinding
32+
import com.hyperdevs.appupdateshelper.app.R
33+
import com.hyperdevs.appupdateshelper.app.misc.showToast
3234
import com.google.android.material.snackbar.Snackbar
3335

3436
/**
3537
* Activity that illustrates the use of the [FakeAppUpdatesHelper] class of the lib to simulate
3638
* app updates in test environments.
3739
*
3840
* In this class we'll simulate a flexible update scenario. In order to understand how flexible
39-
* updates work, please review [com.bq.appupdateshelper.flexible.FlexibleUpdateActivity].
41+
* updates work, please review [com.hyperdevs.appupdateshelper.flexible.FlexibleUpdateActivity].
4042
*/
4143
class FakeUpdateActivity : AppCompatActivity() {
4244

app/src/main/kotlin/com/bq/appupdateshelper_app/flexible/FlexibleUpdateActivity.kt renamed to app/src/main/kotlin/com/hyperdevs/appupdateshelper/app/flexible/FlexibleUpdateActivity.kt

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/*
2-
* Copyright (C) 2020 BQ
2+
* Copyright (C) 2021 HyperDevs
3+
*
4+
* Copyright (C) 2019 BQ
35
*
46
* Licensed under the Apache License, Version 2.0 (the "License");
57
* you may not use this file except in compliance with the License.
@@ -14,20 +16,20 @@
1416
* limitations under the License.
1517
*/
1618

17-
package com.bq.appupdateshelper_app.flexible
19+
package com.hyperdevs.appupdateshelper.app.flexible
1820

1921
import android.content.Context
2022
import android.content.Intent
2123
import android.os.Bundle
2224
import android.util.Log
2325
import android.widget.Button
2426
import androidx.appcompat.app.AppCompatActivity
25-
import com.bq.appupdateshelper.AppUpdateInfoResult
26-
import com.bq.appupdateshelper.AppUpdateInstallState.Status.*
27-
import com.bq.appupdateshelper.AppUpdatesHelper
28-
import com.bq.appupdateshelper_app.databinding.FlexibleUpdateActivityBinding
29-
import com.bq.appupdateshelper_app.R
30-
import com.bq.appupdateshelper_app.misc.showToast
27+
import com.hyperdevs.appupdateshelper.AppUpdateInfoResult
28+
import com.hyperdevs.appupdateshelper.AppUpdateInstallState.Status.*
29+
import com.hyperdevs.appupdateshelper.AppUpdatesHelper
30+
import com.hyperdevs.appupdateshelper.app.databinding.FlexibleUpdateActivityBinding
31+
import com.hyperdevs.appupdateshelper.app.R
32+
import com.hyperdevs.appupdateshelper.app.misc.showToast
3133
import com.google.android.material.snackbar.Snackbar
3234

3335
/**

app/src/main/kotlin/com/bq/appupdateshelper_app/fragment/FragmentUpdateActivity.kt renamed to app/src/main/kotlin/com/hyperdevs/appupdateshelper/app/fragment/FragmentUpdateActivity.kt

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/*
2-
* Copyright (C) 2020 BQ
2+
* Copyright (C) 2021 HyperDevs
3+
*
4+
* Copyright (C) 2019 BQ
35
*
46
* Licensed under the Apache License, Version 2.0 (the "License");
57
* you may not use this file except in compliance with the License.
@@ -14,15 +16,15 @@
1416
* limitations under the License.
1517
*/
1618

17-
package com.bq.appupdateshelper_app.fragment
19+
package com.hyperdevs.appupdateshelper.app.fragment
1820

1921
import android.content.Context
2022
import android.content.Intent
2123
import android.os.Bundle
2224
import androidx.appcompat.app.AppCompatActivity
23-
import com.bq.appupdateshelper.AppUpdatesHelper
24-
import com.bq.appupdateshelper_app.R
25-
import com.bq.appupdateshelper_app.databinding.FragmentUpdateActivityBinding
25+
import com.hyperdevs.appupdateshelper.AppUpdatesHelper
26+
import com.hyperdevs.appupdateshelper.app.R
27+
import com.hyperdevs.appupdateshelper.app.databinding.FragmentUpdateActivityBinding
2628

2729
/**
2830
* Activity that illustrates the use of the [AppUpdatesHelper] class of the lib to start flexible

app/src/main/kotlin/com/bq/appupdateshelper_app/fragment/FragmentUpdateFragment.kt renamed to app/src/main/kotlin/com/hyperdevs/appupdateshelper/app/fragment/FragmentUpdateFragment.kt

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/*
2-
* Copyright (C) 2020 BQ
2+
* Copyright (C) 2021 HyperDevs
3+
*
4+
* Copyright (C) 2019 BQ
35
*
46
* Licensed under the Apache License, Version 2.0 (the "License");
57
* you may not use this file except in compliance with the License.
@@ -14,7 +16,7 @@
1416
* limitations under the License.
1517
*/
1618

17-
package com.bq.appupdateshelper_app.fragment
19+
package com.hyperdevs.appupdateshelper.app.fragment
1820

1921
import android.content.Intent
2022
import android.os.Bundle
@@ -24,11 +26,11 @@ import android.view.View
2426
import android.view.ViewGroup
2527
import android.widget.Button
2628
import androidx.fragment.app.Fragment
27-
import com.bq.appupdateshelper.AppUpdateInfoResult
28-
import com.bq.appupdateshelper.AppUpdateInstallState
29-
import com.bq.appupdateshelper.AppUpdatesHelper
30-
import com.bq.appupdateshelper_app.databinding.FragmentUpdateFragmentBinding
31-
import com.bq.appupdateshelper_app.misc.showToast
29+
import com.hyperdevs.appupdateshelper.AppUpdateInfoResult
30+
import com.hyperdevs.appupdateshelper.AppUpdateInstallState
31+
import com.hyperdevs.appupdateshelper.AppUpdatesHelper
32+
import com.hyperdevs.appupdateshelper.app.databinding.FragmentUpdateFragmentBinding
33+
import com.hyperdevs.appupdateshelper.app.misc.showToast
3234
import com.google.android.material.snackbar.Snackbar
3335

3436
/**

0 commit comments

Comments
 (0)