标签: mobile-development

在以下任何来源中均未找到 Bumblebee Android studio 插件 [id: 'com.android.application', 版本: '7.1.0', apply: false]:

我将我的 android studio 从 Android studio Fox 更新为 Android studio Bumblebee 2021.1.1 但我的项目都无法在Android studio Bumblebee 2021.1.1中运行。我最终得到了这个美丽的错误。

打开查看图像

这是我的 gradle 文件

plugins {
    id 'com.android.application' version '7.1.0' apply false
    id 'com.android.library' version '7.1.0' apply false
}

task clean(type: Delete) {
    delete rootProject.buildDir
}
Run Code Online (Sandbox Code Playgroud)

java android android-studio mobile-development android-update-app

76
推荐指数
9
解决办法
10万
查看次数

为什么我没有在iTunes Connect中看到自动续订订阅

为什么我没有在iTunes Connect中看到自动续订订阅 - >应用内购买 - >选择您要创建的应用内购买.

我只看到耗材,非耗材,非续订订阅 在此输入图像描述

itunesconnect subscription ios mobile-development

47
推荐指数
2
解决办法
8339
查看次数

我可以将 Xcode 与 iPhone Simulator.app 一起安装在外部硬盘驱动器上吗?

我想安装 xcode 来部署跨平台 Flutter 应用程序,但我找不到足够的空间来安装 Xcode 是否有其他解决方案可以将其安装在内部存储上

macos xcode swift mobile-development flutter

43
推荐指数
3
解决办法
3万
查看次数

依赖项“androidx.activity:activity:1.8.0”需要依赖它的库或应用程序针对版本 34 或更高版本的 Android API 进行编译

我已经在 Android Studio 中创建了一个新项目,但是当我运行该应用程序来测试它时,它向我显示以下错误:

\n
An issue was found when checking AAR metadata:\n\n  1.  Dependency \'androidx.activity:activity:1.8.0\' requires libraries and applications that\n      depend on it to compile against version 34 or later of the\n      Android APIs.\n\n      :app is currently compiled against android-33.\n\n      Also, the maximum recommended compile SDK version for Android Gradle\n      plugin 8.0.2 is 33.\n\n      Recommended action: Update this project\'s version of the Android Gradle\n      plugin to one that supports 34, then update this project to use\n      compileSdk of at …
Run Code Online (Sandbox Code Playgroud)

java android android-studio mobile-development

42
推荐指数
5
解决办法
7万
查看次数

React Native支持哪个版本(iOS和Android)?

我找不到这些信息.Android React Native是否真的在sdkMin18上运行,因此大多数Android版本都支持它?

android mobile-application ios mobile-development react-native

38
推荐指数
3
解决办法
4万
查看次数

如何解决 Flutter 中的“FwfhTextStyle”错误?

由于此错误,我的应用程序未构建,并且我无法理解该错误。我尝试了“颤振升级”和“颤振获取”,但没有任何帮助。

Launching lib/main.dart on SM A127F in debug mode...
Running Gradle task 'assembleDebug'...
../../flutter/.pub-cache/hosted/pub.dartlang.org/fwfh_text_style-2.7.3+2/lib/fwfh_text_style.dart:11:7: Error: The non-abstract class 'FwfhTextStyle' is missing implementations for these members:
 - TextStyle.fontVariations
Try to either
 - provide an implementation,
 - inherit an implementation from a superclass or mixin,
 - mark the class as abstract, or
 - provide a 'noSuchMethod' implementation.

class FwfhTextStyle extends _TextStyleProxy {
      ^^^^^^^^^^^^^
../../flutter/packages/flutter/lib/src/painting/text_style.dart:789:33: Context: 'TextStyle.fontVariations' is defined here.
  final List<ui.FontVariation>? fontVariations;
                                ^^^^^^^^^^^^^^ 


FAILURE: Build failed with an exception.

* Where:
Script …
Run Code Online (Sandbox Code Playgroud)

gradle dart android-studio mobile-development flutter

20
推荐指数
3
解决办法
6857
查看次数

MS AppCenter和Azure DevOps(以前的VSTS)之间的主要区别是什么?

在理解这两种服务的能力以及它们之间的核心差异时,我"有点"困惑.

一般来说,我理解它们提供的内容,并且我之前分别使用它们(主要是VSTS作为问题跟踪器),以及用于构建和部署源的AppCenter.

然而:

他们都具备building(显然)publishing能力.

在DevOps中可以选择设置管道:

在此输入图像描述

与AppCenter大致相同:

在此输入图像描述

他们俩都有Tests类似功能的部分(似乎).

3.它们都提供了将构建部署到Play/App Stores的能力.

AppCenter - 带有"Stores"部分,DevOps带有此插件(至少).

它们还具有一些特定功能(例如AppCenter具有PushNotifications功能,Azure DevOps具有问题跟踪),但是,对于应用程序分发,它们看起来非常相似.

那么,哪些应该用于哪些特定任务呢?或者这只是微软的现代"营销"功能之一,当时几乎没有区别,但那些只是两个相似的东西包裹着不同颜色的信封?

app-store mobile-development azure-devops visual-studio-app-center

14
推荐指数
1
解决办法
2028
查看次数

单击使用react-native时如何更改图像和文本颜色?

我正在使用TouchableHighlight,但我只能使用underlayColor更改背景颜色.但是如何改变其他内容呢?

javascript android ios mobile-development react-native

13
推荐指数
3
解决办法
3万
查看次数

是否可以在XAML(Xamarin.Forms)中混合使用OnIdiom和OnPlatform?

对于UWP,我需要一个不同大小的列的宽度Grid.此外,平板电脑和智能手机的价值应该不同.

以下代码崩溃了应用程序

<ColumnDefinition>
    <ColumnDefinition.Width>
        <OnIdiom.Phone>
            <OnPlatform x:TypeArguments="GridLength" iOS="*" Android="*" WinPhone="100" />
        </OnIdiom.Phone>
        <OnIdiom.Tablet>
            <OnPlatform x:TypeArguments="GridLength" iOS="*" Android="*" WinPhone="200" />
        </OnIdiom.Tablet>
    </ColumnDefinition.Width>
</ColumnDefinition>
Run Code Online (Sandbox Code Playgroud)

在xmlns http://xamarin.com/schemas/2014/forms中找不到OnIdiom.Phone

代码在ViewCell.所以我不能使用额外的ResourceDictionary,也OnSizeAllocated()不能在代码隐藏文件中使用.

是否有可能使用OnIdiomOnPlatform在一起?

xaml mobile-devices xamarin xamarin.forms mobile-development

12
推荐指数
2
解决办法
5455
查看次数

无法从“App.js”解析“@react-navigation/native” - React Native + 如何解决?

undefined 无法@react-navigation/nativeApp.js以下位置解析模块:在项目中找不到 @react-navigation/native。

如果您确定该模块存在,请尝试以下步骤:

 1. Clear watchman watches: watchman watch-del-all
 2. Delete node_modules: rm -rf node_modules and run yarn install
 3. Reset Metro's cache: yarn start --reset-cache
 4. Remove the cache: rm -rf /tmp/metro-*
- node_modules\react-native\Libraries\Utilities\HMRClient.js:307:41 in showCompileError
- node_modules\react-native\Libraries\Utilities\HMRClient.js:228:26 in client.on$argument_1
- node_modules\eventemitter3\index.js:181:39 in emit
- node_modules\metro\src\lib\bundle-modules\WebSocketHMRClient.js:80:20 in _ws.onmessage
- node_modules\event-target-shim\dist\event-target-shim.js:818:39 in EventTarget.prototype.dispatchEvent
- node_modules\react-native\Libraries\WebSocket\WebSocket.js:232:27 in _eventEmitter.addListener$argument_1
- node_modules\react-native\Libraries\vendor\emitter\EventEmitter.js:190:12 in emit
- node_modules\react-native\Libraries\BatchedBridge\MessageQueue.js:436:47 in __callFunction
- node_modules\react-native\Libraries\BatchedBridge\MessageQueue.js:111:26 in __guard$argument_0
- node_modules\react-native\Libraries\BatchedBridge\MessageQueue.js:384:10 in __guard
- node_modules\react-native\Libraries\BatchedBridge\MessageQueue.js:110:17 …
Run Code Online (Sandbox Code Playgroud)

mobile-development react-native react-navigation stack-navigator react-navigation-stack

12
推荐指数
3
解决办法
2万
查看次数