Skip to content

Commit a445c6f

Browse files
- Updated the dependencies
- Updated the gradle version - Updated the targetSdkVersion version
1 parent 1788be3 commit a445c6f

File tree

8 files changed

+17
-23
lines changed

8 files changed

+17
-23
lines changed

.idea/misc.xml

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 33
4+
compileSdkVersion 31
55
defaultConfig {
66
applicationId "com.shashank.sony.fancywalkthroughlibrary"
77
minSdkVersion 19
8-
targetSdkVersion 33
8+
targetSdkVersion 31
99
versionCode 1
1010
versionName "1.0"
1111
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'

app/src/main/java/com/shashank/sony/fancywalkthroughlibrary/MainActivity.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ protected void onCreate(Bundle savedInstanceState) {
2020
FancyWalkthroughCard fancywalkthroughCard4 = new FancyWalkthroughCard("Meal is on the way", "Get ready and comfortable while our biker bring your meal at your door.", R.drawable.mealisonway);
2121

2222
fancywalkthroughCard1.setBackgroundColor(R.color.white);
23-
fancywalkthroughCard1.setIconLayoutParams(300, 300, 0, 0, 0, 0);
23+
fancywalkthroughCard1.setIconLayoutParams(800, 800, 0, 0, 0, 0);
2424
fancywalkthroughCard1.setDisplaySkip(true);
2525
fancywalkthroughCard2.setBackgroundColor(R.color.white);
26-
fancywalkthroughCard2.setIconLayoutParams(300, 300, 0, 0, 0, 0);
26+
fancywalkthroughCard2.setIconLayoutParams(800, 800, 0, 0, 0, 0);
2727
fancywalkthroughCard2.setDisplaySkip(true);
2828
fancywalkthroughCard3.setBackgroundColor(R.color.white);
29-
fancywalkthroughCard3.setIconLayoutParams(300, 300, 0, 0, 0, 0);
29+
fancywalkthroughCard3.setIconLayoutParams(800, 800, 0, 0, 0, 0);
3030
fancywalkthroughCard3.setDisplaySkip(true);
3131
fancywalkthroughCard4.setBackgroundColor(R.color.white);
32-
fancywalkthroughCard4.setIconLayoutParams(300, 300, 0, 0, 0, 0);
32+
fancywalkthroughCard4.setIconLayoutParams(800, 800, 0, 0, 0, 0);
3333
fancywalkthroughCard4.setDisplaySkip(true);
3434
List<FancyWalkthroughCard> pages = new ArrayList<>();
3535

build.gradle

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
1-
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2-
31
buildscript {
42

53
repositories {
64
google()
75
jcenter()
86
}
97
dependencies {
10-
classpath 'com.android.tools.build:gradle:7.2.1'
8+
classpath 'com.android.tools.build:gradle:7.0.4'
119
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
12-
13-
// NOTE: Do not place your application dependencies here; they belong
14-
// in the individual module build.gradle files
1510
}
1611
}
1712

fancywalkthroughlib/build.gradle

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,10 @@ apply plugin: 'com.android.library'
22
group='com.github.Shashank02051997'
33

44
android {
5-
compileSdkVersion 33
6-
7-
8-
5+
compileSdkVersion 31
96
defaultConfig {
107
minSdkVersion 19
11-
targetSdkVersion 33
8+
targetSdkVersion 31
129

1310
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
1411

fancywalkthroughlib/src/main/res/layout/fragment_ahoy.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
android:layout_height="250dp"
2525
android:layout_gravity="bottom"
2626
android:alpha="0.6"
27-
android:background="@drawable/shape"></View>
27+
android:background="@drawable/shape" />
2828

2929
<androidx.cardview.widget.CardView
3030
android:id="@+id/cv_cardview"

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
android.enableJetifier=true
1313
android.useAndroidX=true
1414
org.gradle.jvmargs=-Xmx1536m
15-
android.suppressUnsupportedCompileSdk=33
15+
android.suppressUnsupportedCompileSdk=31
1616

1717
# When configured, Gradle will run in incubating parallel mode.
1818
# This option should only be used with decoupled projects. More details, visit
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)