Adding Library Source into Android Studio

后端 未结 4 1020
挽巷
挽巷 2021-01-03 06:55

I am sorry for asking this newbie question.

I am trying to use this library in my project: https://github.com/gfranks/GFMinimalNotifications

I would like to im

4条回答
  •  清歌不尽
    2021-01-03 07:52

    copy in project full package library

    in settings gradle add include ':library',':app'

    in build.gradle

    dependencies {
        ...
        compile project(':library')
    }
    

提交回复
热议问题