代码之家  ›  专栏  ›  技术社区  ›  Stefano Berti

在32位Ubuntu上使用Android Studio

  •  0
  • Stefano Berti  · 技术社区  · 7 年前

    我需要在我的32位机器上使用Android Studio。我已经安装了Ubuntu,但即使在手机上执行“Hello world”,我也会遇到问题。这就是我所做的:

    • 我用我的JDK位置更改了默认的JDK位置
    • 在我应用程序的gradle文件中,我将classpath“com.android.tools.build:gradle:2.3.1”更改为classpath“com.android.tools.build:gradle:2.2.1”
    • 我在gradle文件中将compileSdk、targetSdkVersion和minSdkVersion设置为23

    Error:(11) No resource identifier found for attribute 'roundIcon' in package 'android'
    

    如果我试图从清单中删除roundIcon属性,它会再次出现,因此我认为清单是由其他放置roundIcon属性的东西生成的,API 23不支持该属性。有人,请帮助我在32位机器上编码Android 这是我在标签应用程序下的清单:

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme" >
        <activity android:name="com.example.root.gbu.MainActivity" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
    
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
    
    2 回复  |  直到 7 年前
        1
  •  0
  •   Saurabh Thorat    7 年前

    在你的 build.gradle

    android {
        compileSdkVersion 25
        buildToolsVersion "25.0.0"
        defaultConfig {
            minSdkVersion 23
            targetSdkVersion 25
        }
    }
    

    roundIcon 属性需要SDK 25。您需要在 build.gradle 文件

        2
  •  0
  •   Stefano Berti    7 年前