> For the complete documentation index, see [llms.txt](https://android-news-app.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://android-news-app.gitbook.io/docs/android-studio/ui-configuration.md).

# App Configuration

some features in the application can be enabled or disabled as you wish by giving the value "true" to enable, or giving a value "false" to disable, you can see on the **java/\<your\_package\_name>/config/AppConfig.java** file

```java
//if login register feature disabled, comment feature will be disabled
public static final boolean DISABLE_LOGIN_REGISTER = false;

//show one latest news as header view
public static final boolean DISPLAY_HEADER_VIEW = true;

//show short description in the news list
public static final boolean ENABLE_EXCERPT_IN_POST_LIST = true;

//fixed bottom navigation
public static final boolean ENABLE_FIXED_BOTTOM_NAVIGATION = true;

//show total news in each category
public static final boolean ENABLE_POST_COUNT_IN_CATEGORY = false;

//video player orientation
public static final boolean FORCE_VIDEO_PLAYER_TO_LANDSCAPE = false;

//date display configuration
public static final boolean ENABLE_DATE_DISPLAY = true;
public static final boolean DATE_DISPLAY_AS_TIME_AGO = false;

//display alert dialog when user want to close the app
public static final boolean ENABLE_EXIT_DIALOG = false;

//enable view count in the news description
public static final boolean ENABLE_VIEW_COUNT = true;

//set false to disable copy text in the news description
public static final boolean ENABLE_TEXT_SELECTION = false;

//open link in the news description using external web browser
public static final boolean OPEN_LINK_INSIDE_APP = false;

//GDPR EU Consent
public static final boolean USE_LEGACY_GDPR_EU_CONSENT = true;

//load more for next news list
public static final int LOAD_MORE = 15;

//if you use RTL Language e.g : Arabic Language or other, set true
public static final boolean ENABLE_RTL_MODE = false;
```

&#x20;
