@@ -12,6 +12,7 @@ import androidx.appcompat.widget.Toolbar
1212import androidx.core.widget.doOnTextChanged
1313import fr.corenting.convertisseureurofranc.converters.ConverterAbstract
1414import fr.corenting.convertisseureurofranc.converters.FranceConverter
15+ import fr.corenting.convertisseureurofranc.converters.SouthKoreaConverter
1516import fr.corenting.convertisseureurofranc.converters.UKConverter
1617import fr.corenting.convertisseureurofranc.converters.USAConverter
1718import fr.corenting.convertisseureurofranc.databinding.ActivityConverterBinding
@@ -25,6 +26,7 @@ class ConverterActivity : AppCompatActivity() {
2526 USAConverter ::class .java to 0 ,
2627 UKConverter ::class .java to 1 ,
2728 FranceConverter ::class .java to 2 ,
29+ SouthKoreaConverter ::class .java to 3 ,
2830 )
2931
3032 override fun onCreate (savedInstanceState : Bundle ? ) {
@@ -47,7 +49,8 @@ class ConverterActivity : AppCompatActivity() {
4749 val currenciesList = listOf (
4850 getString(R .string.usa_currencies),
4951 getString(R .string.uk_currencies),
50- getString(R .string.france_currencies)
52+ getString(R .string.france_currencies),
53+ getString(R .string.south_korea_currencies)
5154 )
5255
5356 // Sum input
0 commit comments