Skip to content

amoizesmail/BasicCRUDApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

BasicCRUDApp

To clone this reposisotry,

git clone https://github.com/amoizesmail/BasicCRUDApp.git

This app will store contact details such as First Name, Last Name, Mobile Number and Email Address. In addition, you can update and delete some contact also.

Library Used for storing of data -> https://developer.android.com/training/data-storage/room

Below are the entities that are being save in the local Sqlite database.

data class Contact(
    @PrimaryKey(autoGenerate = true)
    val id :Int =0,
    @ColumnInfo(name = "first_name")
    val firstName:String="",
    @ColumnInfo(name = "last_name")
    val lastName : String="",
    @ColumnInfo(name = "mobile_number")
    val mobileNumber : String="",
    @ColumnInfo(name = "email")
    val email : String=""
)

This code repository is integrated with Bitrise. It automatically create or generate build for every changes in the master branch.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors