A simple number base converter app that allows users to convert numbers between binary, octal, decimal, and hexadecimal bases.
- Convert numbers between binary, octal, decimal, and hexadecimal bases
- Light and dark mode
- Clear and delete buttons
- Simple and intuitive user interface
video.mp4
To get started with the app, clone this repository and open the project in Android Studio.
git clone https://github.com/kariemSeiam/number-converter-app.git
This app uses Data Binding Library for View Binding.
android {
...
buildFeatures {
dataBinding true
}
}
dependencies {
implementation 'com.google.android.material:material:1.8.0'
}