No output from Hugo
See original GitHub issueHi, I’ve added hugo to my application. However, I don’t have any output from hugo. I am not using retrolambda or similar and I can’t identify any potential problem. Here is my build.gradle from project:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'com.jakewharton.hugo:hugo-plugin:1.2.1'
}
}
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
and build.gradle from module:
apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'
apply plugin: 'com.jakewharton.hugo'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "pl.hydroid.android.podcatcher"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/LICENSE.txt'
}
dataBinding {
enabled = true
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:design:23.0.1'
compile 'com.android.support:support-v4:23.+'
compile 'com.google.dagger:dagger:2.0.2'
apt 'com.google.dagger:dagger-compiler:2.0.2'
provided 'org.glassfish:javax.annotation:10.0-b28'
compile 'com.android.support:recyclerview-v7:23.+'
compile 'org.apache.commons:commons-lang3:3.4'
compile 'joda-time:joda-time:2.8.+'
compile 'com.squareup.retrofit:retrofit:1.9.0'
compile 'com.squareup.okhttp:okhttp-urlconnection:2.0.0'
compile 'com.squareup.okhttp:okhttp:2.0.0'
compile 'com.jakewharton:butterknife:7.+'
compile 'com.marshalchen.ultimaterecyclerview:library:+'
compile 'com.android.support:cardview-v7:23.+'
compile 'com.facebook.fresco:fresco:0.9.+'
compile 'com.github.dmytrodanylyk:android-morphing-button:e271da6fd524d8f8855d1016d72f6b69dfcbae8c'
}
All required elements of hugo are present, so I don’t know what might be problematic here.
Issue Analytics
- State:
- Created 8 years ago
- Reactions:4
- Comments:8
Top Results From Across the Web
Almost no output rendered - support - HUGO
Ok, so I am trying to make sense of it all and creating an own theme did help there. All went well up...
Read more >Android: No output from Hugo DebugLog - Stack Overflow
I am trying to use Hugo in my android project but am not seeing anything after putting DebugLog annotations in my project. I've...
Read more >Troubleshooting | Wowchemy
Currently, Hugo does not automatically remove the module's associated output from your outputs in config.yaml when you unload a module.
Read more >Chord Hugo TT2 User Manual - Moon Audio
NOTE: As the output level is fixed on this mode, the volume ball will become unresponsive and will no longer illuminate. WARNING: Never...
Read more >Chord Hugo 2 Review - New dimensions for portable audio ...
Noise 2.6 uV A wt., no measurable noise floor modulation; Distortion 0.00007% at 2.65 V 300 ohms; More power output – 1050 mW...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I’m having the same issue, configured everything as documented, but don’t see any output about hugo. I have put put logging to verbose,it is useless。please help me…