youtube-livestream-android-app
youtube-livestream-android-app copied to clipboard
Project Compilation error
I am just cloning your project and trying to compile on
Android Studio 3.1.3
Build #AI-173.4819257, built on June 4, 2018
JRE: 1.8.0_152-release-1024-b02 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Windows 10 10.0
and it shows some generic errors like ndk configuration path= NULL
apply plugin: 'com.android.application'
android {
signingConfigs {
config {
keyAlias 'keystore'
keyPassword '123'
storeFile file('/home/rashi/StudioProjects/allbits-watchme/keystore.jks')
storePassword '123'
}
}
compileSdkVersion 22
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.google.android.apps.watchme"
minSdkVersion 16
targetSdkVersion 22
versionCode 1
versionName "1.0"
sourceSets.main {
jniLibs.srcDir 'src/main/libs'
jni.srcDirs = [] //disable automatic ndk-build call
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.config
debuggable true
}
debug {
debuggable true
signingConfig signingConfigs.config
minifyEnabled false
}
}
configurations {
implementation.exclude group: "org.apache.httpcomponents", module: "httpclient"
}
externalNativeBuild {
ndkBuild {
path 'src/main/jni/Android.mk'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.google.android.gms:play-services-plus:7.8.0'
implementation 'com.android.support:support-v4:22.2.0'
implementation 'com.android.support:design:22.2.0'
implementation 'com.google.apis:google-api-services-youtube:v3-rev120-1.19.0'
implementation 'com.google.http-client:google-http-client-android:+'
implementation 'com.google.api-client:google-api-client-android:+'
implementation 'com.google.api-client:google-api-client-gson:+'
implementation 'com.mcxiaoke.volley:library:1.0.18'
implementation 'com.google.code.gson:gson:2.3'
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
maven { url "https://maven.google.com" }
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
}
}
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
You might need to enable NDK in this project
Thanks for the fast reply mam😀