zoukankan      html  css  js  c++  java
  • import the library to Android Studio

    To import the library to Android Studio, there is two methods that can (or cannot) work. The first one worked for me, but when I tried the second, it didn't work, but I leave it anyway, to give you a hint of what to do if it doesn't work!

    Method 1:

    1. Open your project in Android Studio
    2. Download the library (using Git, or a zip archive to unzip)
    3. Create a folder "subProject" in your project
    4. Copy and paste the FreemiumLibrary folder to your subProject folder
    5. On the root of your project directory create/modify the settings.gradle file. It should contain something like the following:
    include 'MyApp', ':subProject:FreemiumLibrary'
    
    1. gradle clean & build/close the project and reopen/re-import it.
    2. Edit your project's build.gradle to add this in the "depencies" section:
    dependencies {
    //...
        compile project(':subProject:FreemiumLibrary')
    }
    
    1. Edit your App Activities to extend AdsFragmentActivity instead of Activity.
    2. Edit the library if you want to use it with ActionBarCompat

    Method 2:

      1. Open your project in Android Studio
      2. Download the library (using Git, or a zip archive to unzip)
      3. Go to File > Import Module and import the library as a module
      4. Go to File > Project Structure > Modules
      5. Locate your main project module, click on it. It should have a few android libraries such as support-v4 etc.
      6. Click on the more on the left green "+" button > Module dependency
      7. Select "Freemium Library" (not Freemium Library Project)
      8. Modify your App Activities to extend AdsFragmentActivity instead of Activity.
      9. Modify the library if you want to use it with ActionBarCompat
  • 相关阅读:
    asp.net core 3.1 入口:Program.cs中的Main函数
    vue手机发送验证码倒计时
    阿里云短信服务-短信发送验证码
    前端思维图
    正向代理和反向代理
    lombok+Logback统一异常和日志处理
    java统一结果返回(链式编程结果)
    SpringBoot简介和特点
    web如何测试?
    CSS字体样式属性
  • 原文地址:https://www.cnblogs.com/sfce/p/3866483.html
Copyright © 2011-2022 走看看