-4

I found some useful samples in github about searchable dictionary.

Every java file in the searchable dictionary folder starts with

package com.example.android.searchabledict;

What does package do and how should I use it?

Gaëtan Maisse
  • 12,208
  • 9
  • 44
  • 47
Fenris
  • 3
  • 4

1 Answers1

0

Package objects contain version information about the implementation and specification of a Java package.Package it imports the class or set of class.The package are stored in the manifest file. For more details please go through the link .https://developer.android.com/reference/java/lang/Package.html

Prabha Karan
  • 1,309
  • 3
  • 17
  • 35