-
Notifications
You must be signed in to change notification settings - Fork 0
[PR-24612] Upgrade App #15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
b407261
5b4483e
fa7ab2c
98ccccc
56b666d
2db9e2b
406e8a2
7ba779f
1b03b60
1bed84b
5e01a48
70dedc1
a094de5
8722acc
259843f
3d8b72f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| package com.talkable.appdemo; | ||
|
|
||
| import android.app.Application; | ||
| import androidx.test.core.app.ApplicationProvider; | ||
| import org.junit.Test; | ||
| import static org.junit.Assert.*; | ||
|
|
||
| /** | ||
| * <a href="https://developer.android.com/studio/test">Testing Fundamentals</a> | ||
| */ | ||
|
|
||
| public class ApplicationTest { | ||
| @Test | ||
| public void testApplication() { | ||
| // Getting the application context using AndroidX ApplicationProvider | ||
| Application app = ApplicationProvider.getApplicationContext(); | ||
| assertNotNull(app); // Assert that the Application context is not null | ||
| } | ||
| } |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| package com.talkable.demo; | ||
| package com.talkable.appdemo; | ||
|
|
||
| import android.app.Application; | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| package com.talkable.demo; | ||
| package com.talkable.appdemo; | ||
|
|
||
| import android.app.Activity; | ||
| import android.os.Bundle; | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| package com.talkable.demo; | ||
| package com.talkable.appdemo; | ||
|
|
||
|
|
||
| import android.widget.Toast; | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| package com.talkable.demo; | ||
| package com.talkable.appdemo; | ||
|
|
||
| import org.junit.Test; | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -16,5 +16,10 @@ | |||
| # This option should only be used with decoupled projects. More details, visit | ||||
| # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects | ||||
| # org.gradle.parallel=true | ||||
| android.defaults.buildfeatures.buildconfig=true | ||||
| android.enableJetifier=true | ||||
| android.nonFinalResIds=false | ||||
| android.nonTransitiveRClass=false | ||||
| android.useAndroidX=true | ||||
| sdk_version_code=42 | ||||
| sdk_version_name=0.5.13 | ||||
|
Comment on lines
+24
to
+25
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @Ararat777 as you've updated the SDK, Code and Name versions need to be updated here (+1, new next version). Also, you need to update all mentions of the version like in Line 27 in 73cc2dd
|
||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| #Wed Jun 19 22:47:32 EEST 2019 | ||
| distributionBase=GRADLE_USER_HOME | ||
| distributionPath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip | ||
| networkTimeout=10000 | ||
| validateDistributionUrl=true | ||
| zipStoreBase=GRADLE_USER_HOME | ||
| zipStorePath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
as you've moved this configuration to
gradle.propertiesin SDK module, in App module we need to be consistent and move necessary configuration to it too.