Dependecy - mayurparmar2/AlarmDemo GitHub Wiki

Room Database

Build.gradle.kts
    implementation("androidx.room:room-runtime:2.1.0")
    implementation("androidx.room:room-ktx:2.1.0")
    annotationProcessor("androidx.room:room-compiler:2.1.0")

Country Code Picker

  implementation("com.hbb20:ccp:2.6.0")

<com.hbb20.CountryCodePicker
    android:id="@+id/countryCodePicker"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    app:ccpDialog_textColor="@color/colorPrimaryDark"
    app:ccp_defaultNameCode="IN"
    app:ccp_contentColor="@color/white"
    android:background="@drawable/shape_btn"
    android:backgroundTint="@color/colorPrimaryDark"
    android:layout_gravity="center_vertical"
    android:paddingVertical="@dimen/_5sdp"
    android:paddingStart="@dimen/_10sdp"
    />

Retrofit

Build.gradle.kts
    implementation 'com.squareup.retrofit2:retrofit:2.9.0'
    implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
    implementation "com.squareup.okhttp3:okhttp:4.9.0"
    implementation "com.squareup.okhttp3:logging-interceptor:4.5.0"
⚠️ **GitHub.com Fallback** ⚠️