We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i have a lot repositories on my android project (friend project) and this is the build.gradle:
` apply plugin: 'com.android.application'
android { compileSdkVersion 28 defaultConfig { applicationId 'xxx' manifestPlaceholders = [ onesignal_app_id :xxx onesignal_google_project_number: xxx ] minSdkVersion 24 targetSdkVersion 27 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } splits { abi { enable true reset() include 'x86', 'armeabi-v7a', 'x86_64' universalApk true } } }
dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.android.support:cardview-v7:28.0.0' implementation 'com.android.support:design:28.0.0' implementation 'com.android.support.constraint:constraint-layout:1.1.3' implementation 'com.squareup.okhttp3:okhttp:3.12.1' implementation 'com.github.jkwiecien:EasyImage:1.3.1' implementation 'com.android.volley:volley:1.1.1' implementation 'commons-io:commons-io:2.5' implementation 'net.sf.trove4j:trove4j:3.0.3' implementation 'com.google.code.gson:gson:2.8.2' implementation 'net.sourceforge.streamsupport:streamsupport:1.6.1' implementation 'android.arch.lifecycle:viewmodel:1.1.0' implementation 'javax.inject:javax.inject:1@jar' implementation 'com.github.bumptech.glide:glide:3.7.0' implementation 'com.squareup.retrofit2:retrofit:2.3.0' implementation 'com.google.code.gson:gson:2.8.2' implementation 'com.squareup.retrofit2:converter-gson:2.3.0' implementation 'com.squareup.okhttp3:logging-interceptor:3.12.1' implementation 'com.onesignal:OneSignal:[3.9.1, 3.99.99]' implementation 'com.machinezoo.noexception:noexception:1.3.0'
_**implementation 'com.evrencoskun.library:tableview:0.8.8' implementation 'com.toptoche.searchablespinner:searchablespinnerlibrary:1.3.1' implementation 'sun.bob:mcalendarview:1.0.0' implementation 'com.otaliastudios:autocomplete:1.1.0'**_ testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' implementation files('libs/dpuareu.jar')
} i can't rebuild, and debug and found few repos that return 404... mostly from maven... this is the error...
`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
i have a lot repositories on my android project (friend project)
and this is the build.gradle:
`
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId 'xxx'
manifestPlaceholders = [
onesignal_app_id :xxx
onesignal_google_project_number: xxx
]
minSdkVersion 24
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
splits {
abi {
enable true
reset()
include 'x86', 'armeabi-v7a', 'x86_64'
universalApk true
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.squareup.okhttp3:okhttp:3.12.1'
implementation 'com.github.jkwiecien:EasyImage:1.3.1'
implementation 'com.android.volley:volley:1.1.1'
implementation 'commons-io:commons-io:2.5'
implementation 'net.sf.trove4j:trove4j:3.0.3'
implementation 'com.google.code.gson:gson:2.8.2'
implementation 'net.sourceforge.streamsupport:streamsupport:1.6.1'
implementation 'android.arch.lifecycle:viewmodel:1.1.0'
implementation 'javax.inject:javax.inject:1@jar'
implementation 'com.github.bumptech.glide:glide:3.7.0'
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
implementation 'com.google.code.gson:gson:2.8.2'
implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
implementation 'com.squareup.okhttp3:logging-interceptor:3.12.1'
implementation 'com.onesignal:OneSignal:[3.9.1, 3.99.99]'
implementation 'com.machinezoo.noexception:noexception:1.3.0'
}
i can't rebuild, and debug
and found few repos that return 404... mostly from maven...
this is the error...
`
The text was updated successfully, but these errors were encountered: