zoukankan      html  css  js  c++  java
  • Add a dependency in Android Studio

    http://stackoverflow.com/questions/23077521/where-and-why-add-repositories-on-build-gradle

    https://jitpack.io/

    1. Add repository in top level gradle file

    // Top-level build file where you can add configuration options common to all sub-projects/modules.
    buildscript {
        repositories {
            jcenter()
            // do not add here
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:0.12.2'
            // NOTE: Do not place your application dependencies here; they belong
            // in the individual module build.gradle files
        }
    }
    
    allprojects {
        repositories {
            jcenter()
            // add repository here
            maven {
                url "https://jitpack.io"
            }
        }
    }

    2. add dependency to module level gradle file

    apply plugin: 'com.android.application'
    
    android {
        compileSdkVersion 19
        buildToolsVersion "20.0.0"
    
        defaultConfig {
            applicationId "app.tabsample"
            minSdkVersion 14
            targetSdkVersion 14
        }
    
        buildTypes {
            release {
                runProguard false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
            }
        }
    }
    dependencies {
        compile 'com.android.support:appcompat-v7:20.0.0'
        // add dependency here
        compile 'com.github.PhilJay:MPAndroidChart:v2.1.3'
    }
  • 相关阅读:
    gRPC初识
    Go操作MySQL
    Go语言操作Redis
    Markdown 教程
    Go操作MongoDB
    Go操作NSQ
    Go操作kafka
    Go操作etcd
    Go语言获取系统性能数据gopsutil库
    influxDB
  • 原文地址:https://www.cnblogs.com/phoenix13suns/p/4741786.html
Copyright © 2011-2022 走看看