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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Hi, I am having trouble generating an apk for an app. the app is an ejected expo app React Native version:
React Native Environment Info: System: OS: macOS 10.14.4 CPU: (4) x64 Intel(R) Core(TM) i5-7360U CPU @ 2.30GHz Memory: 121.63 MB / 8.00 GB Shell: 5.3 - /bin/zsh Binaries: Node: 10.13.0 - /usr/local/bin/node Yarn: 1.15.2 - /usr/local/bin/yarn npm: 6.9.0 - ~/.npm-global/bin/npm SDKs: iOS SDK: Platforms: iOS 12.2, macOS 10.14, tvOS 12.2, watchOS 5.2 Android SDK: API Levels: 23, 24, 26, 27, 28 Build Tools: 27.0.3, 28.0.2, 28.0.3 System Images: android-24 | Google Play Intel x86 Atom, android-25 | Google APIs Intel x86 Atom IDEs: Android Studio: 3.4 AI-183.5429.30.34.5452501 Xcode: 10.2.1/10E1001 - /usr/bin/xcodebuild npmPackages: react: 16.5.0 => 16.5.0 react-native: https://github.com/expo/react-native/archive/sdk-31.0.0.tar.gz => 0.57.1 npmGlobalPackages: react-native-cli: 2.0.1
followeing the docs for generating an apk
apk
Describe what you expected to happen: the docs stats that there should an apk named app-release.apk instead I find 4 folders
app-release.apk
$ ls android/app/build/outputs/apk/ devMinSdkDevKernel devMinSdkProdKernel prodMinSdkDevKernel prodMinSdkProdKernel $ ls android/app/build/outputs/apk/prodMinSdkProdKernel/release/ app-prodMinSdk-prodKernel-release.apk output.json
android/build.gradle
buildscript { repositories { google() maven { url 'https://maven.fabric.io/public' } } dependencies { classpath 'io.fabric.tools:gradle:1.+' } } apply plugin: 'com.android.application' apply plugin: 'io.fabric' repositories { maven { url 'https://maven.fabric.io/public' } } android { compileSdkVersion 27 buildToolsVersion '27.0.3' defaultConfig { applicationId 'XX.XXXX' targetSdkVersion 26 versionCode 218 versionName '2.1.6' ndk { abiFilters 'armeabi-v7a', 'x86' } multiDexEnabled true testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" // Deprecated. Used by net.openid:appauth manifestPlaceholders = [ 'appAuthRedirectScheme': 'host.exp.exponent' ] } dexOptions { javaMaxHeapSize System.getenv("DISABLE_DEX_MAX_HEAP") ? null : "8g" } flavorDimensions 'minSdk', 'remoteKernel' productFlavors { devKernel { dimension 'remoteKernel' } prodKernel { dimension 'remoteKernel' } devMinSdk { dimension 'minSdk' // dev utilizes minSDKVersion = 21 to allow the Android gradle plugin // to pre-dex each module and produce an APK that can be tested on // Android Lollipop without time consuming dex merging processes. minSdkVersion 21 } prodMinSdk { dimension 'minSdk' minSdkVersion 21 } } signingConfigs { debug { storeFile file('../debug.keystore') } release { if (project.hasProperty('MYAPP_RELEASE_STORE_FILE')) { storeFile file(MYAPP_RELEASE_STORE_FILE) storePassword MYAPP_RELEASE_STORE_PASSWORD keyAlias MYAPP_RELEASE_KEY_ALIAS keyPassword MYAPP_RELEASE_KEY_PASSWORD } } } buildTypes { debug { debuggable true ext.enableCrashlytics = false } release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' zipAlignEnabled true signingConfig signingConfigs.release } } lintOptions { abortOnError false } packagingOptions { pickFirst "**" } configurations.all { resolutionStrategy.force 'com.android.support:design:27.1.0' } } configurations.all { resolutionStrategy { force 'org.webkit:android-jsc:r224109' } } apply from: 'expo.gradle' dependencies { implementation project(':react-native-firebase') implementation fileTree(dir: 'libs', include: ['*.jar']) // Firebase dependencies: Adding those will break the app // they're already declared in react-native-firebase // implementation "com.google.android.gms:play-services-base:16.0.1" // implementation "com.google.firebase:firebase-core:16.0.8" implementation 'com.android.support:multidex:1.0.1' // Our dependencies implementation 'com.android.support:appcompat-v7:27.1.1' // Our dependencies from ExpoView // DON'T ADD ANYTHING HERE THAT ISN'T IN EXPOVIEW. ONLY COPY THINGS FROM EXPOVIEW TO HERE. implementation 'com.android.support:appcompat-v7:27.1.1' implementation 'com.facebook.android:facebook-android-sdk:4.37.0' implementation('com.facebook.android:audience-network-sdk:4.99.0') { exclude module: 'play-services-ads' } compileOnly 'org.glassfish:javax.annotation:3.1.1' implementation 'com.jakewharton:butterknife:8.4.0' implementation 'de.greenrobot:eventbus:2.4.0' implementation 'com.amplitude:android-sdk:2.9.2' // Be careful when upgrading! Upgrading might break experience scoping. Check with Jesse. See Analytics.resetAmplitudeDatabaseHelper implementation 'com.squareup.picasso:picasso:2.5.2' implementation 'com.google.android.gms:play-services-gcm:15.0.1' implementation 'com.google.android.gms:play-services-analytics:16.0.1' implementation 'com.google.android.gms:play-services-maps:15.0.1' implementation 'com.google.android.gms:play-services-auth:15.0.1' implementation 'com.google.android.gms:play-services-location:15.0.1' implementation 'com.google.android.gms:play-services-ads:15.0.1' annotationProcessor 'com.raizlabs.android:DBFlow-Compiler:2.2.1' implementation "com.raizlabs.android:DBFlow-Core:2.2.1" implementation "com.raizlabs.android:DBFlow:2.2.1" implementation "com.madgag.spongycastle:core:1.53.0.0" implementation "com.madgag.spongycastle:prov:1.53.0.0" debugImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta1' // debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.4-beta1' releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta1' implementation 'com.facebook.device.yearclass:yearclass:1.0.1' implementation 'commons-io:commons-io:1.3.2' implementation 'me.leolin:ShortcutBadger:1.1.4@aar' implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5' implementation 'com.theartofdev.edmodo:android-image-cropper:2.4.7' implementation 'com.yqritc:android-scalablevideoview:1.0.1' implementation 'commons-codec:commons-codec:1.10' implementation 'com.segment.analytics.android:analytics:4.3.0' implementation 'com.google.zxing:core:3.2.1' implementation 'net.openid:appauth:0.4.1' implementation('com.airbnb.android:lottie:2.5.5') { exclude group: 'com.android.support', module: 'appcompat-v7' } implementation('io.nlopez.smartlocation:library:3.2.11') { transitive = false } implementation 'com.android.support:exifinterface:27.1.1' implementation 'com.squareup.okio:okio:1.9.0' implementation 'com.facebook.soloader:soloader:0.5.1' implementation 'com.google.android.exoplayer:exoplayer:2.6.1' implementation 'expolib_v1.com.google.android.exoplayer:expolib_v1-extension-okhttp:2.6.1@aar' // expo-file-system implementation 'com.squareup.okhttp3:okhttp:3.10.0' implementation 'com.squareup.okhttp3:okhttp-urlconnection:3.10.0' // Testing androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' // We use a modified build of com.android.support.test:runner:1.0.1. Explanation in maven-test/README androidTestImplementation 'com.android.support.test:runner:1.0.1' androidTestImplementation 'com.android.support:support-annotations:27.1.1' androidTestImplementation 'com.google.code.findbugs:jsr305:3.0.0' androidTestImplementation 'com.android.support.test.uiautomator:uiautomator-v18:2.1.1' androidTestImplementation 'com.azimolabs.conditionwatcher:conditionwatcher:0.2' testImplementation 'junit:junit:4.12' testImplementation 'org.mockito:mockito-core:1.10.19' testImplementation 'org.robolectric:robolectric:3.8' testImplementation 'com.android.support.test:runner:1.0.2-alpha1' testImplementation 'com.android.support.test:rules:1.0.2-alpha1' implementation('host.exp.exponent:expoview:31.0.0@aar') { transitive = true exclude group: 'com.squareup.okhttp3', module: 'okhttp' exclude group: 'com.squareup.okhttp3', module: 'okhttp-urlconnection' } } // This has to be down here for some reason apply plugin: 'com.google.gms.google-services'
The text was updated successfully, but these errors were encountered:
@noureddinenoureddine you have opened 7 issues with the same information
Sorry, something went wrong.
I wasn't aware of that. I'm sorry. I don't know how did that happen
@noureddinenoureddine no problem, it would be good if you closed the others. Thanks
No branches or pull requests
Hi, I am having trouble generating an apk for an app. the app is an ejected expo app
React Native version:
Steps To Reproduce
followeing the docs for generating an
apk
Describe what you expected to happen:
the docs stats that there should an apk named
app-release.apk
instead I find 4 foldersmy
android/build.gradle
:The text was updated successfully, but these errors were encountered: