BlackBox icon indicating copy to clipboard operation
BlackBox copied to clipboard

[Other] INSTALL

Open DevTrinh opened this issue 3 years ago • 2 comments

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

DevTrinh avatar Aug 24 '22 07:08 DevTrinh

Have you enabled Google Play Services?

Arc157 avatar Aug 24 '22 18:08 Arc157

Have you enabled Google Play Services?

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

DevTrinh avatar Sep 24 '22 01:09 DevTrinh