Adding Library Source into Android Studio

后端 未结 4 979
挽巷
挽巷 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:46

    there is two way to use this we ll use 2nd method Use binary approach

    1. Copy com.github.gfranks.minimal.notification-1.0.aar into your projects libs/ directory.

    2. Include the following either in your top level build.gradle file or your module specific one:

      repositories { flatDir { dirs 'libs' } }

    3. Under your dependencies for your main module's build.gradle file, you can reference that aar file like so: compile 'com.github.gfranks.minimal.notification:com.github.gfranks.minimal.notification-1.0@aar'


    after do above step try to sync gradle if there is issue like

    Suggestion: use tools:overrideLibrary="com.github.gfranks.minimal.notification" to force usage
    

    then add below code in android manifest file

    add below line in side manifest TAG

    xmlns:tools="http://schemas.android.com/tools"
    

    add below line above Application TAG

    
    

    finally your manifest look like

    
    
    
    
        
    
        your all code 
    

提交回复
热议问题