当前位置: 首页 > 工具软件 > Hugo Plugin > 使用案例 >

android+hugo使用方法,android – 使用Hugo插件

孙宏扬
2023-12-01

我不确定您是引用app模块build.gradle还是项目级build.gradle.

但最终,我把它全部放在app模块build.grade中,它对我有用.这是文件的样子:

buildscript {

repositories {

mavenCentral()

}

dependencies {

classpath 'com.jakewharton.hugo:hugo-plugin:1.2.1'

}

}

apply plugin: 'com.android.application'

apply plugin: 'com.jakewharton.hugo'

android {

compileSdkVersion 22

buildToolsVersion "22.0.1"

defaultConfig {

applicationId "com.example.app_name"

minSdkVersion 21

targetSdkVersion 22

versionCode 1

versionName "1.0"

}

buildTypes {

release {

minifyEnabled false

proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

}

}

}

dependencies {

compile fileTree(include: ['*.jar'], dir: 'libs')

}

 类似资料: