Skip to content
New issue

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

[Other] INSTALL #10

Open
DevTrinh opened this issue Aug 24, 2022 · 2 comments
Open

[Other] INSTALL #10

DevTrinh opened this issue Aug 24, 2022 · 2 comments

Comments

@DevTrinh
Copy link

DevTrinh commented Aug 24, 2022

i have imported your library into my personal project, there are some problems, i can run a virtual application however, with some applications like facebook, telegram, messenger, ... then i can't run it. I think I'm missing something important. This is my Gradle in Module app:
`plugins {
id 'com.android.application'
}

android {
compileSdk 32

defaultConfig {
    applicationId "blackbox"
    minSdk 21
    targetSdkVersion rootProject.ext.targetSdkVersion
    versionCode 12
    versionName "1.0"
    ndk {
        abiFilters "arm64-v8a"
    }
}

buildTypes {
    debug {
        debuggable true
        jniDebuggable true
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
    }

    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
    }
}

buildFeatures {
    viewBinding true
}

dexOptions {
    preDexLibraries false
    maxProcessCount 8
    javaMaxHeapSize "4g"
}

compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}

aaptOptions {
    cruncherEnabled = false
    useNewCruncher = false
}
testOptions {
    unitTests.returnDefaultValues = true
}
lintOptions {
    checkReleaseBuilds false
    abortOnError false
    warningsAsErrors false
    disable "UnusedResources", 'RestrictedApi'
    textOutput "stdout"
    textReport false
    check 'NewApi', 'InlinedApi'
}

}

tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('encoding', 'UTF-8')
options.addStringOption('charSet', 'UTF-8')
}

repositories {
flatDir {
dirs 'libs'
}
}

dependencies {
implementation fileTree(dir: "libs", include: [".jar", ".aar"])
implementation project(':Bcore')

implementation 'androidx.appcompat:appcompat:1.5.0'
implementation 'com.google.android.material:material:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation 'com.google.android.material:material:1.7.0-beta01'

implementation 'me.relex:circleindicator:2.1.6'
implementation 'de.hdodenhof:circleimageview:3.1.0'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.17'

implementation 'com.github.bumptech.glide:glide:4.13.2'

}`

i imported your version 2.1.0. Look forward to the help

@Arc157
Copy link

Arc157 commented Aug 24, 2022

Have you enabled Google Play Services?

@DevTrinh
Copy link
Author

Have you enabled Google Play Services?

i enabled it in gsmCore, i mean set it. However it still doesn't work

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants