0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Android】uses-featureってなに

Posted at

背景

なにをするものか

Google Play は、アプリのマニフェストで宣言された 要素を使用して、ハードウェアおよびソフトウェアの機能要件を満たさない端末からアプリをフィルタします。

  • 要は、ここで宣言しておくと要件を満たしていない端末ではGoogle Playに表示されなくなる?

  • 以下では、カメラを宣言しています。これでは、背面カメラがついていない端末をはじけます。
AndroidManifest.xml
<uses-feature android:name="android.hardware.camera" />
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?