# CodeEditor **Repository Path**: alexfugui/CodeEditor ## Basic Information - **Project Name**: CodeEditor - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-08 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # CodeEditor [](https://jitpack.io/#ahmadaghazadeh/CodeEditor) [](https://android-arsenal.com/details/1/7185) This is a text/code(Base From [ModPE IDE] ) editor meant for integration as a modular component of the overall UI. The aim is to provide a powerful editor that can be used just like any other View. CodeEditor has been used for this purpose because it is feature-rich, fast, and easy to modify and embed in applications. Please note that this library is currently supported on android API 15 and above. Integration with existing project ### [Click For Play Video](https://youtu.be/lq-P1qwgU1Q) [Stackoverflow](https://stackoverflow.com/a/52641368/1770868)
--- ### Setup ##### build.gradle (project) ```groovy allprojects { repositories { ... maven { url 'https://jitpack.io' } } } ``` #### build.gradle (app) ```groovy dependencies { ... implementation 'com.github.ahmadaghazadeh:CodeEditor:1.0.17' } ``` ### Basic Usage #### XML DataBinding ```xml ...