File tree Expand file tree Collapse file tree
androidTest/java/com/arcm/scalenumberpicker
test/java/com/arcm/scalenumberpicker Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ float value = snp.setValue(myFloatValue);
7676```
7777### XML
7878``` xml
79- <com .arcm.scalenumberpicker .ScaleNumberPicker
79+ <com .arcm.demo .ScaleNumberPicker
8080 android : id =" @+id/scaleNumberPicker"
8181 android : layout_width =" match_parent"
8282 android : layout_height =" wrap_content"
Original file line number Diff line number Diff line change @@ -10,8 +10,6 @@ android {
1010 minSdk 21
1111 targetSdk 30
1212
13- multiDexEnabled true
14-
1513 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
1614 consumerProguardFiles " consumer-rules.pro"
1715 }
@@ -46,7 +44,7 @@ afterEvaluate {
4644 from components. release
4745
4846 // You can then customize attributes of the publication as shown below.
49- groupId = ' com.arcm.ScaleNumberPicker '
47+ groupId = ' com.arcm.scalenumberpicker '
5048 artifactId = ' final'
5149 version = ' 1.0'
5250 }
@@ -55,7 +53,7 @@ afterEvaluate {
5553 // Applies the component for the debug build variant.
5654 from components. debug
5755
58- groupId = ' com.arcm.ScaleNumberPicker '
56+ groupId = ' com.arcm.scalenumberpicker '
5957 artifactId = ' final-debug'
6058 version = ' 1.0'
6159 }
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ android {
66 compileSdk 30
77
88 defaultConfig {
9- applicationId " com.arcm.scalenumberpicker "
9+ applicationId " com.arcm.demo "
1010 minSdk 21
1111 targetSdk 30
1212 versionCode 1
Original file line number Diff line number Diff line change 1- package com .arcm .scalenumberpicker ;
1+ package com .arcm .demo ;
22
33import android .content .Context ;
44
@@ -21,6 +21,6 @@ public class ExampleInstrumentedTest {
2121 public void useAppContext () {
2222 // Context of the app under test.
2323 Context appContext = InstrumentationRegistry .getInstrumentation ().getTargetContext ();
24- assertEquals ("com.arcm.scalenumberpicker " , appContext .getPackageName ());
24+ assertEquals ("com.arcm.demo " , appContext .getPackageName ());
2525 }
2626}
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" ?>
22<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3- package =" com.arcm.scalenumberpicker " >
3+ package =" com.arcm.demo " >
44
55 <application
66 android : allowBackup =" true"
Original file line number Diff line number Diff line change 1- package com .arcm .scalenumberpicker ;
1+ package com .arcm .demo ;
22
33import androidx .appcompat .app .AppCompatActivity ;
44
55import android .os .Bundle ;
66import android .util .Log ;
77import android .view .View ;
88
9- import com .arcm .scalenumberpicker .databinding .ActivityMainBinding ;
9+ import com .arcm .demo .databinding .ActivityMainBinding ;
10+ import com .arcm .scalenumberpicker .ScaleNumberPicker ;
1011
1112public class MainActivity extends AppCompatActivity {
1213 public static final String TAG = "MainActivity" ;
Original file line number Diff line number Diff line change 1- package com .arcm .scalenumberpicker ;
1+ package com .arcm .demo ;
22
33import org .junit .Test ;
44
You can’t perform that action at this time.
0 commit comments